<%posts.forEach(function(post, i) {%>
<% if (i > 0) { %><%=i%>. <% } %><%= post.title %>
<% }); %>
<%posts.forEach(function(post, i) {%>
<% if (i == 0) { %>
<%= post.title %>
<% } else { %>
Chapter <%=i%>
<%= post.title %>
<% } %>
<%- post.content %>
<% }); %>
<% include ../partials/foundation %>