21 lines
352 B
Plaintext
21 lines
352 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include "layouts/head.njk" %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{% include "layouts/ascii.njk" %}
|
|
</header>
|
|
|
|
<main>
|
|
{{ content | safe }}
|
|
</main>
|
|
|
|
<hr>
|
|
<footer>
|
|
{% include "layouts/footer.njk" %}
|
|
{% include "layouts/button.njk" %}
|
|
</footer>
|
|
</body>
|
|
</html> |