site/_includes/layouts/base.njk
Ruben 5edbe5703f
Some checks failed
/ build (push) Failing after 35s
reconstruct site to use eleventy
2025-04-20 03:23:57 -05:00

21 lines
No EOL
227 B
Text

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