-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.html
43 lines (38 loc) · 1.1 KB
/
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
---
layout: default
---
<div class="home">
<head>
<title>{{ site.title }}</title>
</head>
{%- if site.posts.size > 0 -%}
<ul class="post-list">
{% 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" class="post-year">{{this_year}}</h2>
<ul>
{% endif %}
<li>
{%- assign date_format = site.date_format | default: "%b %-d" -%}
<span style="width: 15%; text-align: left; float: left;">
{{ post.date | date: date_format }}
</span>
<a href="{{ post.url | relative_url }}">
{{ post.title | escape }}
</a>
</li>
{% if forloop.last %}
</ul>
{% else %}
{% if this_year != next_year %}
</ul>
<h2 id="{{ next_year }}-ref" class="post-year">{{next_year}}</h2>
<ul>
{% endif %}
{% endif %}
{% endfor %}
</ul>
{%- endif -%}
</div>