hexo/themes/oranges/layout/category.ejs

29 lines
996 B
Plaintext
Raw Normal View History

2024-05-09 10:56:56 +08:00
<!-- 标签详情页展示某个标签下的文章列表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>