<%- include("partials/header"); -%>

Welcome to a simple full stack blog.

<%= startingContent %>

<% posts.forEach(function(post){ %>

<%=post.title%>

<%=post.content.substring(0, 100) + " ..."%> Read More

<% }) %> <%- include("partials/footer"); -%>