codex-mythica/views/index.ejs

31 lines
652 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'>
<div class='intro'>
2024-10-15 20:37:26 +00:00
<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>
2018-01-08 00:12:11 +00:00
</div>
2024-10-15 20:37:26 +00:00
<%- include('./partials/random_card') %>
2018-01-08 00:12:11 +00:00
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>