feat: convert templates from njk to html

Note: Nunjucks will still process the templates, but this way they can
be plain HTML files and will be formatted properly.
This commit is contained in:
Devin Lumley 2024-01-28 20:52:09 -08:00
parent d666ef0731
commit a5526174ba
11 changed files with 107 additions and 10 deletions

View file

@ -10,8 +10,8 @@
</head>
<body>
{% include "partials/header.njk" %}
<main id="main" class="flow">{{ content | safe }}</main>
{% include "partials/footer.njk" %}
{% include "partials/header.html" %}
<main id="main" class="wrapper">{{ content | safe }}</main>
{% include "partials/footer.html" %}
</body>
</html>