codex-mythica/views/index.ejs
2024-10-15 16:37:26 -04:00

31 lines
652 B
Plaintext

<!-- views/pages/index.ejs -->
<%- include('./partials/top') %>
<body class="container">
<%- include('./partials/header') %>
<main class='main'>
<div class='intro'>
<p>
<strong>The Codex Mythica</strong> is a database of all of the cards released
for the <em>Mythic Wars</em> card game. Browse through
<a href='/cards/'>all of the cards</a> in the game, or search to find the
card(s) you&apos;re looking for.
</p>
</div>
<%- include('./partials/random_card') %>
<%- include('./partials/search_form') %>
</main>
<%- include('./partials/footer') %>
<%- include('./partials/scripts') %>
</body>
</html>