<% page.posts.forEach(post => { %>
-
<% if (post.excerpt) { %>
<%- post.excerpt %>
<% } else { %>
<%- truncate(strip_html(post.content), {length: 150}) %>
<% } %>
<%= date(post.date, 'YYYY-MM-DD') %>
<% post.categories.forEach((category, i) => { %>
- <%= i === 0 ? '' : '| ' %><%= category.name %>
<% }); %>
<% if (theme.magic.enable === false) { %>
<% } %>
<%- __('read_more') %>
<% }) %>