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

<%= post.title %>

最后更新:<%= date(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) { %> <% } %>
<% }) %>