-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patharchives.html
More file actions
34 lines (28 loc) · 778 Bytes
/
archives.html
File metadata and controls
34 lines (28 loc) · 778 Bytes
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
---
layout: page
title: 文章归档
---
{% 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 %}
<ul>
<li><span>{{this_year}} </span>
<ul>
{% endif %}
<li>{{ post.date | date: "%m-%d" }} : <a href="{{ site.url | append: site.baseurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li>
{% if forloop.last %}
</ul>
</li>
</ul>
{% else %}
{% if this_year != next_year %}
</ul>
</li>
</ul>
<ul>
<li><span>{{next_year}} </span>
<ul>
{% endif %}
{% endif %}
{% endfor %}