codex-mythica/views/all.ejs

20 lines
287 B
Plaintext
Raw Normal View History

2018-01-08 00:12:11 +00:00
<!-- views/pages/index.ejs -->
2024-10-15 20:37:26 +00:00
<%- include('./partials/top') %>
2018-01-08 00:12:11 +00:00
<body class="container">
2024-10-15 20:37:26 +00:00
<%- include('./partials/header') %>
2018-01-08 00:12:11 +00:00
<main class='main'>
2024-10-15 20:37:26 +00:00
<%- include('./partials/cards') %>
2018-01-08 00:12:11 +00:00
</main>
2024-10-15 20:37:26 +00:00
<%- include('./partials/footer') %>
2018-01-08 00:12:11 +00:00
2024-10-15 20:37:26 +00:00
<%- include('./partials/scripts') %>
2018-01-08 00:12:11 +00:00
</body>
</html>