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-10 21:53:28 -05:00
|
|
|
<h2 id="{{ year | slugify }}" class="archive__subtitle">{{ year }}</h2>
|
2016-02-24 22:08:59 -05:00
|
|
|
{% capture written_year %}{{ year }}{% endcapture %}
|
|
|
|
{% endif %}
|
2016-03-19 20:58:17 -04:00
|
|
|
{% include archive-single.html %}
|
2016-02-24 22:08:59 -05:00
|
|
|
{% endfor %}
|