<% var title = ''; var archiveHtml = null; if (page.category) { titleKey = 'categories'; archiveHtml = '' + page.category + ''; } if (page.tag) { titleKey = 'tags'; archiveHtml = '' + page.tag + ''; } if (page.archive){ if (page.year) { title = page.year + (page.month ? '/' + page.month : ''); } else { titleKey = 'archives'; } } %> <%- partial('pagenav', {nav_head: __('current_page') + __('page_name.' + titleKey), partial_path: null, archive_html: archiveHtml}) %> <% if (pagination == 2){ %> <% page.posts.each(function(item){ %> <%- partial('simple_article', {item: item, index: true, showEntry: false, showTags: false}) %> <% }); %> <%- partial('pagination') %> <% } else if (page.archive) { %> <% } else { %>
<% page.posts.each(function(item) { %>     <%- item.title %> <% }); %>
<% } %>