-
Notifications
You must be signed in to change notification settings - Fork 4
/
postsByYear.html
49 lines (41 loc) · 1.31 KB
/
postsByYear.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
layout: default
title: Posts By Year
permalink: /postsByYear/
---
{% include subscribe.html %}
<hr>
{% comment %}
From http://stackoverflow.com/questions/19086284/jekyll-liquid-templating-how-to-group-blog-posts-by-year/19104574#19104574
{% endcomment %}
{% assign years = site.posts | map: "date" %}
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
{% if forloop.first %}
{% assign year_to_check = this_year %}
{% else %}
{% assign year_to_check = next_year %}
{% endif %}
{% assign year_counter = 0 %}
{% for date in years %}
{% assign year = date | date: "%Y" %}
{% if year == year_to_check %}
{% assign year_counter = year_counter | plus: 1 %}
{% endif %}
{% endfor %}
{% if forloop.first %}
<h2 id="{{ this_year }}-ref">{{this_year}} - {{ year_counter }} in Total</h2>
<ul>
{% endif %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% if forloop.last %}
</ul>
{% else %}
{% if this_year != next_year %}
</ul>
<h2 id="{{ next_year }}-ref">{{next_year}} - {{ year_counter }} in Total</h2>
<ul>
{% endif %}
{% endif %}
{% endfor %}