tapestry-code/layout/page.ejs
2026-03-27 16:47:50 +01:00

15 lines
No EOL
506 B
Text

<!-- This is the template for the page -->
<div class="pp page border">
<div class="post-header">
<h1><%= page.title || "Untitled" %></h1>
<% if(page.photos && page.photos.length) { %>
<div>
<img class="border" src="<%- config.root %><%- page.photos[0] %>" alt="<%- page.title || "Untitled" %>">
</div>
<% } %>
<p><%= page.description %></p>
</div>
<div class="post-content">
<%- page.content %>
</div>
</div>