<% if (page.layout == 'post') { %>
<%
var firstCat = '';
if (page.categories && page.categories.length > 0) {
firstCat = page.categories.data[0].name;
}
%>
>
<%- __('btn.home') %>
<%- __('btn.blog') %>
<% if (page.layout == 'post' && page.categories && page.categories.length > 0) { %>
<%- list_categories(page.categories, {
class: 'cap breadcrumb',
show_count: false,
separator: '
',
style: 'none'
}) %>
<% } %>
<%- __('meta.created') %>
<% } else if (page.layout == 'wiki') { %>
<%
var catPage = '';
site.pages.filter(function (p) {
return p.layout == 'index' && p.title && p.wiki && p.wiki.includes(page.wiki)
}).limit(1).each(function(p) {
catPage = p;
});
%>
<%- __('meta.updated') %>
<% } else { %>
<% } %>
<% } %>