codex-mythica/views/search.ejs

22 lines
332 B
Plaintext
Raw Permalink Normal View History

2018-01-08 00:12:11 +00:00
<!-- views/pages/search.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') %>
2024-10-15 20:37:26 +00:00
<%- include('./partials/search_form') %>
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>