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
623 B

6 years ago
<% if (site.categories.length){ %>
<section class='widget <%- theme.blur.widget ? 'widget-blur' : '' %> <%- item.class %>'>
4 years ago
<%- partial('header', {item: item}) %>
6 years ago
<div class='content <%= theme.style %>'>
<ul class="entry">
5 years ago
<% site.categories.sort('path').each(function(category){ %>
<li><a class="flat-box<%= category.parent ? ' child' : ''%>" 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
<% } %>