<%= date(articleObject.date, is_post() ? 'YYYY-MM-DD HH:mm:ss' : 'YYYY-MM-DD') %>
<% if (articleObject.categories.length) { %>
<% articleObject.categories.forEach((category, i) => { %>
-
<%= i === 0 ? '' : '| ' %><%= category.name %>
<% }); %>
<% } %>
<% if (articleObject.tags.length) { %>
<% articleObject.tags.forEach((tag, i) => { %>
-
<%= i === 0 ? '' : '| ' %><%= tag.name %>
<% }); %>
<% } %>
<% if (theme.website_count.busuanzi_count.enable && theme.website_count.busuanzi_count.page_pv && is_post()) { %>
<% } %>
<% if(theme.post_wordcount.wordcount){ %>
<%= wordcount(page.content) %> <%- __('wordcount') %>
<% } %>
<% if(theme.post_wordcount.min2read){ %>
<%= min2read(page.content) %> <%- __('min2read') %>
<% } %>