Simple Blog

<% if (page === 'index' ) { %> <% if (posts.length===0) { %>

No posts yet.

<% } %> <% posts.forEach(function(post) { %>
<%= post.title %>
<%= post.body.length> 200 ? post.body.slice(0, 200) + '...' : post.body %>
<% }); %> <% } else if (page === 'post' ) { %>
<%= post.title %>
<%= post.body %>
← Back to list <% } else if (page === 'new' ) { %>
<% } else if (page==='notfound' ) { %>

Not Found

The page you are looking for does not exist.

← Back to list <% } %>