<% page.posts.each(function(post, i){ %>
<%if(post.cover){%>
<%- date(post.date, 'YYYY/MM/DD') %>
<% if (post.categories && post.categories.length&&theme.show_post_category){ %>
<%- list_categories(post.categories, {
show_count: false,
class: 'post-category',
style: 'none',
separator: ' '
}) %>
<% } %>
<% if (post.tags && post.tags.length&&theme.show_post_tags){ %>
<%- list_tags(post.tags, {
show_count: false,
class: 'post-tag'
}) %>
<% } %>
<%if(post.excerpt){%>
<%- strip_html(post.excerpt) %>
<%}else{%>
<%- strip_html(truncate(post.content,{length:150})) %>
<%}%>
<% }) %>
<%- partial('partials/pagination') %>
<%if(theme.sidebar&&theme.widgets.length){%>