<% if (pagination == 2){ %>
<% page.posts.each(function(post) { %>
<% if (post.wanted) { %>
<%- partial('wanted', {post: post, index: true}) %>
<% } %>
<% }) %>
<% page.posts.each(function(post) { %>
<% if (post.featured) { %>
<%- partial('featured', {post: post, index: true}) %>
<% } %>
<% }) %>
IN THE NEWS
<% page.posts.each(function(post) { %>
<% if (!post.wanted && !post.featured) { %>
<%- partial('article', {post: post, index: true}) %>
<% } %>
<% }) %>
<% } %>
<% if (page.total > 1){ %>
<% } %>
<%- partial('_partial/buttons') %>