-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.ftl
60 lines (54 loc) · 1.55 KB
/
index.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
<#--
@package Akina
-->
<#include "header.ftl">
<@header title="${blog_title!}">
<div class="blank"></div>
</@header>
<#if settings.head_notice!false && settings.notice_title!=''>
<div class="notice">
<i class="iconfont"></i>
<div class="notice-content">${settings.notice_title!}</div>
</div>
</#if>
<#if settings.top_feature!true>
<#include "layouts/feature.ftl">
</#if>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<h1 class="main-title">Posts</h1>
<#if posts?? && posts.getTotalElements() gt 0>
<#--Start the Loop-->
<#if (settings.post_list_style!'standard') == 'standard'>
<#list posts.content as post>
<#include "tpl/content.ftl">
</#list>
<#else>
<#include "tpl/content-thumb.ftl">
</#if>
<#else>
<#include "tpl/content-none.ftl">
</#if>
</main><!-- #main -->
<@paginationTag method="index" page="${posts.number}" total="${posts.totalPages}" display="3">
<#if (settings.pagenav_style!'ajax') == 'ajax'>
<div id="pagination">
<#if pagination.hasNext>
<a href="${pagination.nextPageFullPath!}" class="">下一页</a>
<#else>
<span>没有更多文章了</span>
</#if>
</div>
<#else>
<nav class="navigator">
<#if pagination.hasPrev>
<a href="${pagination.prevPageFullPath!}"><i class="iconfont"></i></a>
</#if>
<#if pagination.hasNext>
<a href="${pagination.nextPageFullPath!}"><i class="iconfont"></i></a>
</#if>
</nav>
</#if>
</@paginationTag>
</div><!-- #primary -->
<#include "footer.ftl">