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

11 lines
196 B
Plaintext

<%- include('header') -%>
<h1><%= title %></h1>
<ul>
<li>Visit the <a href="/users">users</a> page.</li>
<li>Visit the <a href="/posts">posts</a> page.</li>
</ul>
<%- include('footer') -%>