<% columns = theme.column; %>
<% item.forEach(function(post, index) { %> <% if (index % columns === 0) { %> <%- include('post_feed', { post: post }) %> <% } %> <% }); %>
<% item.forEach(function(post, index) { %> <% if (index % columns === 1) { %> <%- include('post_feed', { post: post }) %> <% } %> <% }); %>
<% if (columns === 3) { %>
<% item.forEach(function(post, index) { %> <% if (index % columns === 2) { %> <%- include('post_feed', { post: post }) %> <% } %> <% }); %>
<% } %>