You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
599 B

6 years ago
<% if (site.categories.length){ %>
6 years ago
<section class='<%- item.widget %>'>
6 years ago
<%- partial('header', {item: item, defIcon: 'fas fa-folder-open', defTitle: __('sidebar.category')}) %>
6 years ago
<div class='content <%= theme.style %>'>
<ul class="entry">
<% site.categories.sort('name').each(function(category){ %>
6 years ago
<li><a class="flat-box" title="<%- url_for(category.path) %>" href="<%- url_for(category.path) %>"><div class='name'><%- category.name %></div><div class='badge'>(<%- category.posts.length %>)</div></a></li>
6 years ago
<% }) %>
</ul>
</div>
</section>
6 years ago
<% } %>