2018-03-20 17:45:28 +01:00
|
|
|
---
|
|
|
|
layout: archive
|
|
|
|
---
|
|
|
|
|
|
|
|
{{ content }}
|
|
|
|
|
2018-03-20 20:38:24 +01:00
|
|
|
<ul class="taxonomy__index">
|
2018-03-20 17:45:28 +01:00
|
|
|
{% assign postsInYear = site.posts | group_by_exp: 'post', 'post.date | date: "%Y"' %}
|
|
|
|
{% for year in postsInYear %}
|
|
|
|
<li>
|
|
|
|
<a href="#{{ year.name }}">
|
2018-03-20 20:38:24 +01:00
|
|
|
<strong>{{ year.name }}</strong> <span class="taxonomy__count">{{ year.items | size }}</span>
|
2018-03-20 17:45:28 +01:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{% assign postsByYear = site.posts | group_by_exp: 'post', 'post.date | date: "%Y"' %}
|
|
|
|
{% for year in postsByYear %}
|
2018-03-20 20:38:24 +01:00
|
|
|
<section id="{{ year.name }}" class="taxonomy__section">
|
2018-03-20 17:45:28 +01:00
|
|
|
<h2 class="archive__subtitle">{{ year.name }}</h2>
|
|
|
|
<div class="entries-{{ page.entries_layout | default: 'list' }}">
|
|
|
|
{% for post in year.items %}
|
2018-03-20 19:38:55 +01:00
|
|
|
{% include archive-single.html type=page.entries_layout %}
|
2018-03-20 17:45:28 +01:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2018-03-29 18:45:29 +02:00
|
|
|
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑</a>
|
2018-03-20 17:45:28 +01:00
|
|
|
</section>
|
2018-03-29 18:45:29 +02:00
|
|
|
{% endfor %}
|