2014-12-24 12:26:03 +00:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
title: Post Archive
|
|
|
|
---
|
|
|
|
|
|
|
|
{% for post in site.posts %}
|
|
|
|
{% capture month %}{{ post.date | date: '%m%Y' }}{% endcapture %}
|
|
|
|
{% capture nmonth %}{{ post.next.date | date: '%m%Y' }}{% endcapture %}
|
|
|
|
|
|
|
|
{% if month != nmonth %}
|
|
|
|
{% if forloop.index != 1 %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<h3>{{ post.date | date: '%B %Y' }}</h3>
|
|
|
|
<ul>
|
|
|
|
{% endif %}
|
|
|
|
|
2014-12-29 21:15:43 +00:00
|
|
|
<li>
|
2015-01-01 19:51:56 +00:00
|
|
|
{% if post.category == "links" %}⚓{% endif %} <a href="{{ post.url }}">{{ post.title }}</a>
|
2014-12-29 21:15:43 +00:00
|
|
|
</li>
|
2014-12-24 12:26:03 +00:00
|
|
|
{% endfor %}
|