10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
|
<% if (post.categories && post.categories.length){ %>
|
||
|
<div class="article-category">
|
||
|
<%- list_categories(post.categories, {
|
||
|
show_count: false,
|
||
|
class: 'article-category',
|
||
|
style: 'none',
|
||
|
separator: ' / '
|
||
|
}) %>
|
||
|
</div>
|
||
|
<% } %>
|