28 lines
598 B
Plaintext
28 lines
598 B
Plaintext
<!-- views/pages/index.ejs -->
|
|
<% include ./partials/top %>
|
|
|
|
<body class="container">
|
|
|
|
<header>
|
|
<% include ./partials/header %>
|
|
</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.
|
|
</div>
|
|
|
|
<% include ./partials/search_form %>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<% include ./partials/footer %>
|
|
</footer>
|
|
|
|
<% include ./partials/scripts %>
|
|
|
|
</body>
|
|
</html>
|