mirror of
https://github.com/zebrajr/express.git
synced 2025-12-06 12:19:51 +01:00
13 lines
199 B
Plaintext
13 lines
199 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 %>
|