voxblog/apps/api/examples/route-separation/views/posts/index.ejs

13 lines
209 B
Plaintext

<%- include('../header') -%>
<h1>Posts</h1>
<dl id="posts">
<% posts.forEach(function(post) { %>
<dt><%= post.title %></dt>
<dd><%= post.body %></dd>
<% }) %>
</dl>
<%- include('../footer') -%>