<% if( (theme.scheme === 'Paradox') && (page.current === 1) && (is_home()) ) { %>
<%- partial('_partial/daily_pic') %>
<%- partial('_partial/blog_info') %>
<% } %>
<% if(typeof hasposttop === 'function') { %>
<% if(hasposttop(site.posts)) { %>
<% getposttop(site.posts).each(function(toppost){ %>
<% if(theme.scheme === 'Paradox'){ %>
<%- partial('_partial/Paradox-post_entry', { post: toppost, index: true, pin: true }) %>
<% } %>
<% if(theme.scheme === 'Isolation'){ %>
<%- partial('_partial/Isolation-post_entry', { post: toppost, index: true, pin: true }) %>
<% } %>
<% }); %>
<% } %>
<% } %>
<% page.posts.each(function(post) { %>
<% if(!((typeof hasposttop === 'function') && post.top)) { %>
<% if(theme.scheme === 'Paradox') { %>
<%- partial('_partial/Paradox-post_entry', { post: post, index: true, pin: false }) %>
<% } %>
<% if(theme.scheme === 'Isolation') { %>
<%- partial('_partial/Isolation-post_entry', { post: post, index: true, pin: false }) %>
<% } %>
<% } %>
<% }); %>
<% if (page.total > 1) { %>
<% } %>
<% if(theme.scheme === 'Paradox') { %>
<%- partial('_partial/Paradox-post_entry-thumbnail') %>
<% } %>