hexo-theme-keep/layout/common/category-post.ejs

10 lines
394 B
Plaintext
Raw Normal View History

<!--
is_category() 检查当前页面是否为分类归档页面。
如果给定一个字符串作为参数,将会检查目前是否为指定分类。
-->
<% if (is_category()) { %>
<div class="category-container">
<div class="category-name"><%- __('category') %><%= page.category %> [共<%= page.posts.length %>篇]</div>
</div>
<%- partial('archive-post') %>
<% } %>