-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchives.html
31 lines (28 loc) · 890 Bytes
/
archives.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
---
layout: page
title: Archives
permalink: /archives/
---
<div id="archives">
{% 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 %}
<h2 id="{{ this_year }}-ref">{{this_year}}</h2>
{% endif %}
<article>
<time datetime="{{ post.date }}" pubdate>
<span class='month'>{{ post.date | date: "%b" }}</span>
<span class='day'>{{ post.date | date: "%d" }}</span>
</time>
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<footer />
</article>
{% if forloop.last %}
{% else %}
{% if this_year != next_year %}
<h2 id="{{ next_year }}-ref">{{next_year}}</h2>
{% endif %}
{% endif %}
{% endfor %}
</div>