<%= date(post.date, 'YYYY-MM-DD') %>
<% if (theme.magic.enable === true) { %>
<% if (theme.home_article.category === true) { %>
<% post.categories.forEach((category, i) => { %>
- <%= i === 0 ? '' : '> ' %><%= category.name %>
<% }); %>
<% } %>
<% if (theme.home_article.tag === true) { %>
<% post.tags.forEach((tag, i) => {
if (theme.home_article.tag_limit===0 | i+1<= theme.home_article.tag_limit) {%>
- <%= i === 0 ? '' : '| ' %><%= tag.name %>
<% }}); %>
<% } %>
<% } %>
<% if (theme.magic.enable === false) { %>