hexo/themes/oranges/layout/category.ejs

29 lines
996 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 标签详情页展示某个标签下的文章列表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>