<%= post.title || '(no title)' %>
<%- partial('partial/post-meta', {cache:true}) %> <% if(theme.toc.enable && post.toc == true) {%>

<%= __('Toc') %>

<%- toc(post.content, {list_number: true}) %>
<% } %>

自动摘要

<% if (post.excerpt) { %> <%- post.excerpt %> <% } else if (post.description) { %> <%- strip_html(post.description) %> <% } else { %> <%- post.content %> <% } %>
<%-page.content%>
<% if(theme.copyright.enable){ %>
<% } %>
<% if(theme.sharejs.enable || theme.reward.enable){%>
<%-partial('partial/_modify/rewards/reward', {cache:true}) %>
<% } %>
<% post.tags.each(function(tag){%> <%= tag.name %> <% }) %>
<% if (post.prev){ %>
<%= post.prev.title %>
<% } %> <% if (post.next){ %>
<%= post.next.title %>
<% } %>
<%- partial('partial/_comment/index') %>