forked from cetr/halo-theme-sagiri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag.ftl
51 lines (50 loc) · 2.62 KB
/
tag.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
<#include "layout/head.ftl">
<@head title="标签:${tag.name} | ${blog_title!}"/>
<div class="container sidebar-position-right page-home">
<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 category post">
<div id="posts" class="posts-collapse">
<div class="collection-title"><h1>${tag.name}<small>标签</small></h1></div>
<#list posts.content 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 scaleup" 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>
<#if posts.totalPages gt 1>
<@paginationTag method="tagPosts" page="${posts.number}" total="${posts.totalPages}" display="3" slug="${tag.slug!}">
<#include "layout/pagebar.ftl">
</@paginationTag>
</#if>
</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">