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

11 lines
359 B
Plaintext

<% if (post.categories && post.categories.length) { %>
<div class="article-category">
<i class="fa fa-folder"></i>
<%- list_categories(post.categories, {
show_count: false,
class: 'article-category',
style: 'none',
separator: '<i class="fa fa-angle-right"></i>'
}) %>
</div>
<% } %>