Update to latest jekyll

This commit is contained in:
2018-10-29 22:29:33 -04:00
parent 38bb6d6b67
commit 8e32784b57
11 changed files with 198 additions and 140 deletions

View File

@ -2,11 +2,11 @@
layout: page
title: Blog Archive
---
{% for post in site.posts reverse %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% unless year == this_year %}
{% assign year = this_year %}
<h3>{{ year }}</h3>
{% endunless %}
{% include article_list.html %}
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% unless year == this_year %}
{% assign year = this_year %}
<h3>{{ year }}</h3>
{% endunless %}
{% include article_list.html %}
{% endfor %}