-
Notifications
You must be signed in to change notification settings - Fork 1
/
archives.ftl
86 lines (79 loc) · 4.63 KB
/
archives.ftl
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<#include "layout/head.ftl">
<@head title="归档 | ${blog_title!}"/>
<div class="container sidebar-position-right page-archive">
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner">
<#include "layout/navbar.ftl">
<#include "layout/brand_wrapper.ftl">
<#include "layout/master.ftl">
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div class="post-block archive post">
<div id="posts" class="posts-collapse">
<h1 class="post-collapse-title" style="text-align: center" itemprop="name headline">
归档
</h1>
<#if settings.archives_include_categories!false>
<div class="category-all-page">
<div class="category-all-title">分类</div>
<div class="category-all">
<ul class="category-list">
<@categoryTag method="list">
<#if categories?? && categories?size gt 0>
<#list categories as category>
<li class="category-list-item">
<a class="category-list-link"
href="${category.fullPath}">${category.name}</a>
<span class="category-list-count">${category.postCount}</span>
</li>
</#list>
</#if>
</@categoryTag>
</ul>
</div>
</div>
</#if>
<@postTag method="archiveYear">
<#list archives as archive>
<div class="collection-year">
<div class="collection-title">
<h2 class="archive-year" id="archive-year-2020">${archive.year?c}</h2>
</div>
<#list archive.posts?sort_by("createTime")?reverse as post>
<article class="post post-type-normal" itemscope
itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="${post.fullPath}"
itemprop="url">
<span itemprop="name">${post.title}</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="${post.createTime}"
content="${post.createTime?string('yyyy-MM-dd')}">
${post.createTime?string('MM-dd')}
</time>
</div>
</header>
</article>
</#list>
</div>
</#list>
</@postTag>
</div>
</div>
</div>
</div>
<#include "layout/sheet_directory.ftl">
</div>
</main>
<#include "layout/footer.ftl">
<#include "layout/back_to_top.ftl">
</div>
<#include "layout/tail.ftl">