% if (!is_post()) { %>
生成日期:<%= post.date %>
文章路径:<%= post.path %>
文章分类:
<% post.categories.forEach(function(category) { %>
<%= category.name %>
<% }); %>
文章标签:
<% post.tags.forEach(tag => { %>
<%= tag.name %>
<% }); %>
<% } %>
<% if (is_post()) { %>
<%- partial('article') %>
<% } %>