<%- partial('_partial/header') %>
<%- partial('post/gallery') %>
<% if (post.link || post.title) { %>
<%- partial('post/title', {class_name: 'article-title'}) %>
<% } %>
<% if (post.excerpt && index) { %>
<%- post.excerpt %>
<% if (theme.excerpt_link) { %>
<%- link_to(url_for(post.path)+'#more', theme.excerpt_link) %>
<% } %>
<% } else { %>
<%- toc(page.content, {list_number: false}) %>
<%- post.content %>
<% } %>
<% if (!index) { %>
<%- partial('post/nav') %>
<% } %>