site/_includes/layouts/base.njk
Ruben 73745d03df
All checks were successful
/ build (push) Successful in 24s
experimental styling
2025-09-30 22:22:06 -05:00

26 lines
No EOL
363 B
Text

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