Skip to content

Instantly share code, notes, and snippets.

@rey
Last active October 28, 2016 19:25
Show Gist options
  • Save rey/5142484 to your computer and use it in GitHub Desktop.
Save rey/5142484 to your computer and use it in GitHub Desktop.
Archive page for my blerg
<section id="archive">
<h3>This year's posts</h3>
{%for post in site.posts %}
{% unless post.next %}
<ul class="this">
{% else %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if year != nyear %}
</ul>
<h3>{{ post.date | date: '%Y' }}</h3>
<ul class="past">
{% endif %}
{% endunless %}
<li><time>{{ post.date | date:"%d %b" }}</time><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment