blob: 721e66a7013a27c862de322d138cbc1960eb8e0a (
plain)
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
|
---
layout: default
title: Archives
robots: follow, noindex, noodp, noydir
---
<section id="archives">
<h1>Archives</h1>
{% for post in site.posts %}
{% unless post.next %}
<h2>{{ post.date | date: '%Y' }}</h2>
<ol>
{% else %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if year != nyear %}
</ol>
<h2>{{ post.date | date: '%Y' }}</h2>
<ol>
{% endif %}
{% endunless %}
<li>
<time datetime="{{ post.date | date: '%Y-%m-%d' }}" pubdate>{{ post.date | date: '%b' }} {{ post.date | ordinalize }}</time> <a href="{{ post.url }}" rel="bookmark" target="_self" title="{{ post.title }}">{{ post.title }}</a>
</li>
{% endfor %}
</ol>
</section>
|