% if (pagination == 2){ %> <% page.posts.each(function(post){ %> <%- partial('article', {post: post, index: true}) %> <% }) %> <% } else { %> <% var last; %> <% page.posts.each(function(post, i){ %> <% var year = post.date.year(); %> <% if (last != year){ %> <% if (last != null){ %> <% } %> <% last = year; %> <%= year %> <% } %> <%- partial('archive-post', {post: post, even: i % 2 == 0}) %> <% }) %> <% if (page.posts.length){ %> <% } %> <% } %> <% if (page.total > 1){ %> <% var prev_text = "« " + __('prev');var next_text = __('next') + " »"%> <%- paginator({ prev_text: prev_text, next_text: next_text }) %> <% } %>