codex-mythica/views/all.ejs

24 lines
313 B
Plaintext
Raw Normal View History

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