website/index.html

16 lines
285 B
HTML
Raw Normal View History

2016-03-11 04:20:09 +01:00
---
layout: default
---
2016-03-10 02:16:08 +01:00
2016-03-11 04:20:09 +01:00
<div class="posts">
<ul class="posts__list">
2016-03-10 02:16:08 +01:00
2016-03-11 04:20:09 +01:00
{% for post in site.posts %}
<li>
2016-03-11 05:10:19 +01:00
<a href="{{ post.url }}">{{ post.title }} | {{ post.date | date: '%b %d %Y' }}</a>
2016-03-11 04:20:09 +01:00
</li>
{% endfor %}
2016-03-10 02:16:08 +01:00
2016-03-11 04:20:09 +01:00
</ul>
</div>