Addition of base.njk

This commit is contained in:
Derek L. Seitz 2025-08-12 23:34:07 -05:00
parent ef6363b3bd
commit 691968ceac
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{title}}</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
{% include "header.html" %}
<main>
{{ content | safe }}
</main>
{% include "footer.html" %}
</body>
</html}