site/_includes/layouts/base.njk
Ruben 87fa720865
All checks were successful
/ build (push) Successful in 1m26s
clean up, redo windows so it's not "invalid"
2025-06-03 00:05:15 -05:00

23 lines
No EOL
266 B
Text

---
title: base
---
<!DOCTYPE html>
<html lang="en">
<head>
{% include "layouts/header.njk" %}
</head>
<body>
{% include "layouts/navbar.njk" %}
<main>
{{ content | safe }}
</main>
{% include "layouts/footer.njk" %}
</body>
</html>