<% if (post.top || post.sticky > 0) { %>
<%= __('Sticky') %>
<% } %>
<% if(theme.post_meta.page.date){ %>
<%- date(post.date, 'YYYY.MM.DD') %>
<%- date(post.updated, 'YYYY.MM.DD') %>
<% } %>
<% if(theme.post_meta.page.categories && post.categories.length > 0){ %>
<% } %>
<% if(theme.post_meta.page.wordcount || theme.post_meta.page.min2read){ %>
<% if(theme.post_meta.page.wordcount){ %>
<%= wordcount(post.content) %> <%= __('words') %>
<% } %>
<% if(theme.post_meta.page.min2read){ %>
<%= min2read(post.content) %> <%= __('min') %>
<% } %>
<% } %>
<% if (post.excerpt) { %>
<%- post.excerpt %>
<% } else if (post.description) { %>
<%- strip_html(post.description) %>
<% } else if (theme.auto_excerpt.enable && post.auto_excerpt) { %>
<%- strip_html(truncate(post.content, {length: theme.auto_excerpt.length})) %>
<% } else { %>
<%- post.content %>
<% } %>