1
Fork 0
blog/posts.md

14 lines
377 B
Markdown
Raw Normal View History

2013-05-10 18:18:10 +00:00
---
layout: post
title: posts
---
{% for post in site.posts %}
2015-06-10 17:13:05 +00:00
{% capture currentyear %}{{post.date | date: "%Y"}}{% endcapture %}
{% if currentyear != year %}
### {{ currentyear }}
{% capture year %}{{currentyear}}{% endcapture %}
{% endif %}
2015-06-10 17:24:19 +00:00
* {{post.date | date: "%d %b"}}: [{{post.title}}]({{post.url | remove_first: '/' | prepend: site.baseurl}})
2013-05-10 18:18:10 +00:00
{% endfor %}