21 lines
776 B
Plaintext
Executable File
21 lines
776 B
Plaintext
Executable File
<% if (post.categories && post.categories.length){ %>
|
|
<% try { %>
|
|
<%# 在 _posts/ 外使用 categories 会报错 %>
|
|
<% const show_categories = list_categories(post.categories, {
|
|
show_count: false,
|
|
separator: '<span class="sep"></span>',
|
|
style: 'none'
|
|
}) %>
|
|
<div class='new-meta-item category'>
|
|
<i class="<%- theme.article.body.meta_library.category.icon %> fa-fw" aria-hidden="true"></i>
|
|
<%- show_categories %>
|
|
<% for(cat of post.categories.toArray()){ %>
|
|
<span hidden itemprop="about" itemscope itemtype="https://schema.org.cn/Thing">
|
|
<a href="<%- url_for(cat.path) %>" itemprop="url"><span itemprop="name"><%- cat.name %></span></a>
|
|
</span>
|
|
<% } %>
|
|
</div>
|
|
<% }catch (error) {} %>
|
|
<% } %>
|
|
|