-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.html
29 lines (27 loc) · 836 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
---
layout: default
title: archive
permalink: /archive/
---
<h2 class="page-heading">Archive</h2>
<h3>Most recent posts</h3>
{%for post in site.posts %}
{% unless post.next %}
{% capture cyear %}{{ site.time | date: '%y' }}{% endcapture %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% if cyear != year %}
<h3>{{ post.date | date: '%Y' }}</h3>
{% endif %}
{% else %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if year != nyear %}
<h3>{{ post.date | date: '%Y' }}</h3>
<ul class="past">
{% endif %}
{% endunless %}
<time>{{ post.date | date:"%d %b " }}</time> - <a href="{{ post.url }}">{{ post.title }}</a>
{% endfor %}
{% if jekyll.environment == 'production' %}
{% include analytics.html %}
{% endif %}