20 lines
268 B
Plaintext
20 lines
268 B
Plaintext
<!-- views/single.ejs -->
|
|
<%- include('./partials/top') %>
|
|
|
|
<body class="container">
|
|
|
|
<%- include('./partials/header') %>
|
|
|
|
<main>
|
|
|
|
<%- include('./partials/card') %>
|
|
|
|
</main>
|
|
|
|
<%- include('./partials/footer') %>
|
|
|
|
<%- include('./partials/scripts') %>
|
|
|
|
</body>
|
|
</html>
|