forked from halo-dev/halo-theme-pinghsu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcategories.ftl
43 lines (42 loc) · 1.28 KB
/
categories.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
<#--
* Template Page of Categorys Archives
*
* @package custom
-->
<#include "header.ftl">
<#import "functions.ftl" as fun>
<@header title="分类 | ${blog_title!}"></@header>
<div class="main-content archive-page clearfix">
<@categoryTag method="list">
<#if categories?? && categories?size gt 0>
<#list categories as category>
<div class="categorys-item">
<div class="categorys-title">
<a href="${category.fullPath!}">${category.name!}</a><span> :${category.postCount!0}</span>
</div>
<@postTag method="listByCategoryId" categoryId="${category.id!}">
<#if posts?? && posts?size gt 0>
<div class="post-lists">
<div class="post-lists-body">
<#list posts as post>
<div class="post-list-item">
<div class="post-list-item-container">
<div class="item-label">
<div class="item-title"><a href="${post.fullPath!}">${post.title!}</a></div>
<div class="item-meta clearfix">
<div class="item-meta-date"> ${post.createTime?string('MMM d,yyyy')} </div>
</div>
</div>
</div>
</div>
</#list>
</div>
</div>
</#if>
</@postTag>
</div>
</#list>
</#if>
</@categoryTag>
</div>
<#include "footer.ftl">