Files
11ty/_includes/layouts/base.njk

15 lines
263 B
Plaintext
Raw Permalink Normal View History

2026-05-13 09:50:37 -07:00
<!DOCTYPE html>
<html lang="en">
{% include "head.njk" %}
<body>
2026-05-18 14:24:14 -07:00
{% include "header.njk" %}
2026-05-13 09:50:37 -07:00
2026-05-18 14:24:14 -07:00
<main id="main">
{{ content | safe }}
</main>
2026-05-13 09:50:37 -07:00
{% include "footer.njk" %}
<!-- This page `{{ page.url }}` was built on {% currentBuildDate %} -->
</body>
</html>