Blog/themes/freemind/layout/_widget/category.ejs

10 lines
346 B
Text
Raw Normal View History

2022-03-16 15:24:24 +01:00
<% if (site.categories.length){ %>
<div class="widget">
<h4><%= __('categories') %></h4>
<ul class="tag_box inline list-unstyled">
<% site.categories.sort('name').each(function(item){ %>
<li><a href="<%- url_for('./') %><%- item.path %>"><%= item.name %><span><%= item.posts.length %></span></a></li>
<% }); %>
</ul>
</div>
<% } %>