-
Notifications
You must be signed in to change notification settings - Fork 17
/
archive.html
46 lines (33 loc) · 823 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
36
37
38
39
40
41
42
43
44
45
---
layout: default
title: Evert's dugout - Archive
permalink: "/archive.html"
---
<h1>Archive</h1>
<p>I've been writing blog-posts on and off since 2006. Below you'll find the full
archive. Don't scroll too far though, quality degrades as you go backwards in time.
</p>
{% for post in site.posts %}
{% unless post.next %}
<h3>{{ post.date | date: '%Y' }}</h3>
<ul>
{% else %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if year != nyear %}
</ul>
<h3>{{ post.date | date: '%Y' }}</h3>
<ul>
{% endif %}
{% endunless %}
{% unless post.draft %}
<li>
<time>
{{ post.date | date:"%b %d" }}
</time>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endunless %}
{% assign lastyear = year %}
{% endfor %}
</ul>