2019-04-09 10:58:22 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: Home
|
|
|
|
description: The personal blog of designer and developer Bradley Taunt
|
|
|
|
---
|
|
|
|
|
2019-08-30 13:00:21 +00:00
|
|
|
<ul class="homepage-list" style="list-style:none;padding:1rem 0;">
|
2019-04-09 10:58:22 +00:00
|
|
|
{% for post in site.posts %}
|
2019-08-30 13:00:21 +00:00
|
|
|
<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>
|