-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchives.html
executable file
·43 lines (42 loc) · 1.59 KB
/
archives.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: page
title : Archives
description: "文章归档"
header-img: "img/bg/archives.webp"
---
{% 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 %}
<legend id="{{this_year}}-{{this_month}}"><font color="#0085a1">{{this_year}} {{this_month}}</font></legend>
<ul>
{% endif %}
<b>
<span>
<font style="font-size:18px; font-family:'Times New Roman'" face="Consolas">{{ post.date | date: "%F" }}</font>
<font style="font-size:20px" color="#4286f4">»</font>
<font style="font-size:18px; font-family:'Times New Roman'" face="sans-serif"><a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></font>
</span>
</b>
<br>
{% if forloop.last %}
</ul>
{% else %}
{% if this_year != next_year %}
<br>
</ul>
<legend id="{{next_year}}-{{next_month}}"><font color="#0085a1">{{next_year}} {{next_month}}</font></legend>
<ul>
{% else %}
{% if this_month != next_month %}
<br>
</ul>
<legend id="{{next_year}}-{{next_month}}"><font color="#0085a1">{{next_year}} {{next_month}}</font></legend>
<ul>
{% endif %}
{% endif %}
{% endif %}
{% endfor%}
{% assign posts_collate = nil %}