2016-02-24 22:08:59 -05:00
|
|
|
---
|
|
|
|
layout: archive
|
|
|
|
permalink: /year-archive/
|
|
|
|
title: "Posts by Year"
|
2016-03-06 22:07:48 -05:00
|
|
|
author_profile: false
|
2016-02-24 22:08:59 -05:00
|
|
|
---
|
2016-03-07 09:51:50 -05:00
|
|
|
|
2016-03-07 10:27:07 -05:00
|
|
|
{% include base_path %}
|
2016-02-24 22:08:59 -05:00
|
|
|
{% capture written_year %}'None'{% endcapture %}
|
|
|
|
{% for post in site.posts %}
|
|
|
|
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
|
|
|
|
{% if year != written_year %}
|
2016-03-09 22:18:10 -05:00
|
|
|
<h2>{{ year }}</h2>
|
2016-02-24 22:08:59 -05:00
|
|
|
{% capture written_year %}{{ year }}{% endcapture %}
|
|
|
|
{% endif %}
|
2016-03-07 10:27:07 -05:00
|
|
|
{% include archive-list-single %}
|
2016-02-24 22:08:59 -05:00
|
|
|
{% endfor %}
|