26 lines
596 B
HTML
26 lines
596 B
HTML
---
|
|
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 %}
|
|
|
|
<li>
|
|
{% if post.category == "links" %}
|
|
⚓ <a href="{{ post.link }}" rel="external">{{ post.title }}</a>
|
|
{% else %}
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|