Files
leecat.art/_includes/layouts/base.njk

18 lines
317 B
Plaintext
Raw Normal View History

2026-02-20 11:57:19 -08:00
<!doctype html>
<html lang="en">
<head>
2026-02-21 13:09:15 -08:00
{% include "head-content.njk" %}
2026-02-20 11:57:19 -08:00
</head>
<body>
{% include "header.njk" %}
<main id="main">
{{ content | safe }}
</main>
{% include "footer.njk" %}
<!-- This page `{{ page.url }}` was built on {% currentBuildDate %} -->
2026-03-01 14:40:42 -08:00
</body>
2026-02-20 11:57:19 -08:00
</html>