codex-mythica/views/index.ejs

26 lines
594 B
Plaintext
Raw Normal View History

2018-01-07 19:12:11 -05:00
<!-- views/pages/index.ejs -->
<% include ./partials/top %>
<body class="container">
<% include ./partials/header %>
2018-01-07 19:12:11 -05:00
<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.
</div>
<% include ./partials/random_card %>
2018-01-07 19:12:11 -05:00
<% include ./partials/search_form %>
</main>
<% include ./partials/footer %>
2018-01-07 19:12:11 -05:00
<% include ./partials/scripts %>
</body>
</html>