summaryrefslogtreecommitdiffstats
path: root/source/_layouts/category_index.html
blob: 85a63072043995765c6a9d08dc704955f2dd8d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
layout: page
footer: false
---

<div id="blog-archives" class="category">
{% for post in site.categories[page.category] %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% unless year == this_year %}
  {% assign year = this_year %}
  <h2>{{ year }}</h2>
{% endunless %}
<article>
  {% include archive_post.html %}
</article>
{% endfor %}
</div>