--- layout: page --- <% page.posts.each(function(post){ %>

<%- post.title || "Untitled" %>

<%- post.subtitle || "" %>

<%- truncate(strip_html(post.content), {length: 200, omission: '...'}) %>...
<% if (config.home_posts_tag){%>

Posted by <%- post.author || config.author %> on <%= post.date.format(config.date_format) %>

<% post.tags.forEach(function(tag){ %> <%= tag.name %> <% }) %>
<%} else {%>

Posted by <%- post.author || config.author %> on <%= post.date.format(config.date_format) %>

<%}%>

<% }); %>