-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.html
47 lines (43 loc) · 1.67 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
44
45
46
47
---
title: 归档
layout: default
---
{% include header.html %}
<div class="g-banner tags-banner {{ site.postPatterns | prepend: 'post-pattern-' }} {{ site.theme-color | prepend: 'bgcolor-' }}"
data-theme="{{ site.theme-color }}">
<h2>归档</h2>
</div>
<main class="tags-content">
<ul class="tags-list">
<li style="text-align: center;">共 {{ site.posts.size }} 篇文章</li>
<li>
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
{% capture next_month %}{{ post.previous.date | date: "%B" }}{% endcapture %}
{% if forloop.first %}
<span class="archive-name" id="{{ post.date | date: "%Y-%m" }}">「{{ post.date | date: "%Y年%m月" }}」</span>
{% endif %}
<a class="archive-post" href="{{ post.url }}">{{ post.date | date: "%m-%d" }} » {{ post.title }}</a>
{% if forloop.last %}
</li>
{% else %}
{% if this_year != next_year %}
</li>
<li>
<span class="archive-name" id="{{post.previous.date | date: "%Y-%m" }}">「{{ post.previous.date | date: "%Y年%m月" }}」</span>
{% else %}
{% if this_month != next_month %}
</li>
<li>
<span class="archive-name" id="{{ post.previous.date | date: "%Y-%m" }}">「{{ post.previous.date | date: "%Y年%m月" }}」</span>
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
</li>
</li>
</ul>
</main>
{% include footer.html %}