hexo-theme-ayer/layout/_partial/post/category.ejs

10 lines
258 B
JavaScript
Raw Normal View History

2019-12-03 11:37:44 +00:00
<% if (post.categories && post.categories.length){ %>
<div class="article-category">
<%- list_categories(post.categories, {
show_count: false,
class: 'article-category',
style: 'none',
separator: ' / '
}) %>
</div>
<% } %>