-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.html
35 lines (30 loc) · 870 Bytes
/
archive.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
---
layout: page
title: Archive
permalink: /archive/
---
<div class="archive">
<div class="timeline" id="timeline">
{% for post in site.posts %}
{% unless post.next %}
<div class="archive-title">
<h4 class="archive-year">{{ post.date | date: '%Y' }}</h4>
</div>
<ul>
{% else %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if year != nyear %}
</ul>
<div class="archive-title">
<h4 class="archive-year">{{ post.date | date: '%Y' }}</h4>
</div>
<ul>
{% endif %}
{% endunless %}
<li>
<span>{{ post.date | date: "%b %-d" }}</span> ~ <i class="fa fa-angle-right"></i> <a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>