forked from suyan/suyan.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.html
36 lines (33 loc) · 1.13 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
---
layout: page
title: 归档
comments: false
---
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture this_month %}{{ post.date | date: "%m" }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
{% capture next_month %}{{ post.previous.date | date: "%m" }}{% endcapture %}
{% if forloop.first %}
<legend id="{{this_year}}-{{this_month}}">{{this_year}}年-{{this_month}}月</legend>
<ul>
{% endif %}
<li><span>{{ post.date | date: "%Y年-%m月-%d日" }}</span> »
<a class="pjaxlink" href="{{ post.url }}">{{ post.title }}</a>
</li>
{% if forloop.last %}
</ul>
{% else %}
{% if this_year != next_year %}
</ul>
<legend id="{{next_year}}-{{next_month}}">{{next_year}}年-{{next_month}}月</legend>
<ul>
{% else %}
{% if this_month != next_month %}
</ul>
<legend id="{{next_year}}-{{next_month}}">{{next_year}}年-{{next_month}}月</legend>
<ul>
{% endif %}
{% endif %}
{% endif %}
{% endfor %}