'>
<% if (site.pages && site.pages.length > 0) { %>
<% site.pages.sort("-date").each(function(post){ %>
<% if (post.group && post.group == page.group && post.layout != 'list') { %>
<%- partial('_partial/post', {post: post, index: false}) %>
<% } %>
<% }) %>
<% site.posts.sort("-date").each(function(post){ %>
<% if (post.group && post.group == page.group && post.layout != 'list') { %>
<%- partial('_partial/post', {post: post, index: false}) %>
<% } %>
<% }) %>
<% } %>
<%- partial('_partial/side') %>