codex-mythica/views/single.ejs

24 lines
294 B
Plaintext
Raw Normal View History

2018-01-07 19:12:11 -05:00
<!-- views/single.ejs -->
<% include ./partials/top %>
<body class="container">
<header>
<% include ./partials/header %>
</header>
<main>
<% include ./partials/card %>
</main>
<footer>
<% include ./partials/footer %>
</footer>
<% include ./partials/scripts %>
</body>
</html>