24 lines
313 B
Plaintext
24 lines
313 B
Plaintext
<!-- views/pages/index.ejs -->
|
|
<% include ./partials/top %>
|
|
|
|
<body class="container">
|
|
|
|
<header>
|
|
<% include ./partials/header %>
|
|
</header>
|
|
|
|
<main class='main'>
|
|
|
|
<% include ./partials/cards %>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<% include ./partials/footer %>
|
|
</footer>
|
|
|
|
<% include ./partials/scripts %>
|
|
|
|
</body>
|
|
</html>
|