<% page.posts.sort("date", "desc").each(function(post, i) { %>

<%= post.title %>

发布:<%= date(post.date, "YYYY-MM-DD HH:mm") %>
<% const updateValid = post.updated.isValid() %>
更新:<%= date(updateValid ? post.updated : post.date, "YYYY-MM-DD HH:mm") %>
<% if (post.categories.length> 0) { %>
知识分类: <%- list_categories(post.categories, { class: { a: 'uk-link-muted' }, show_count: false, style: false, separator: ' / ' }) %>
<% } %>
<% if (post.excerpt) { %>
<%- post.excerpt %>
<% } %> <% if (post.tags.length> 0) { %> <% } %>
<% }) %>