forked from zchengsite/hexo-theme-oranges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.ejs
28 lines (27 loc) · 996 Bytes
/
category.ejs
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
<!-- 标签详情页,展示某个标签下的文章列表,url形式:https://yoursite/tags/某个标签/ -->
<div class="container category-details">
<div class="content-title">
<h2>
<span><%- page.category %></span>
</h2>
</div>
<% page.posts.sort('date', -1).each(function(item) { %>
<div class="post-list">
<div class="post-item" title="<%- item.title %>">
<span class="time-m-d"><%- item.date.format("YYYY-MM-DD") %></span>
<a href="<%- url_for(item.path) %>">
<span><%- item.title %></span>
</a>
</div>
</div>
<% }) %>
<nav class="post-navigation">
<% if(page.prev !== 0){ %>
<a href="<%- url_for(page.prev_link)%>"><i class="iconfont icon-angleleft"></i></a>
<% } %>
<span class="page-num"><%- page.current %> / <%- page.total -%></span>
<% if(page.next !== 0){ %>
<a href="<%- url_for(page.next_link)%>"><i class="iconfont icon-angleright"></i></a>
<% } %>
</nav>
</div>