You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
364 B
17 lines
364 B
---
|
|
layout: post
|
|
title: Blog Archive
|
|
no_meta: true
|
|
---
|
|
<div class="blog-archives">
|
|
{% for post in site.posts reverse %}
|
|
{% 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>
|
|
|