lightspeed/index.html

15 lines
460 B
HTML
Executable File

---
layout: default
title: Home
description: The personal blog of designer and developer Bradley Taunt
---
<ul style="list-style:none;padding:1rem 0;">
{% for post in site.posts %}
<li>
<a style="display:inline-block;width:60%;" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<time style="float:right;font-size:90%;" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %-d, %Y" }}</time>
</li>
{% endfor %}
</ul>