lightspeed/index.html

15 lines
535 B
HTML
Raw Normal View History

2019-04-09 10:58:22 +00:00
---
layout: default
title: Home
description: The personal blog of designer and developer Bradley Taunt
---
<ul class="homepage-list" style="list-style:none;padding:1rem 0;">
2019-04-09 10:58:22 +00:00
{% for post in site.posts %}
<li style="align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between;margin-bottom:10px;">
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<time style="font-size:90%;" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %-d, %Y" }}</time>
2019-04-09 10:58:22 +00:00
</li>
{% endfor %}
</ul>