31 lines
652 B
Plaintext
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're looking for.
|
|
</p>
|
|
</div>
|
|
|
|
<%- include('./partials/random_card') %>
|
|
|
|
<%- include('./partials/search_form') %>
|
|
|
|
</main>
|
|
|
|
<%- include('./partials/footer') %>
|
|
|
|
<%- include('./partials/scripts') %>
|
|
|
|
</body>
|
|
</html>
|