site/_includes/layouts/base.njk

26 lines
363 B
Text
Raw Normal View History

2025-04-20 03:23:57 -05:00
---
title: base
---
<!DOCTYPE html>
<html lang="en">
<head>
{% include "layouts/header.njk" %}
</head>
<body>
2025-09-30 22:22:06 -05:00
<bg-gradient aria-hidden="true"></bg-gradient>
<bg-image aria-hidden="true"></bg-image>
{% include "layouts/navbar.njk" %}
2025-04-20 03:23:57 -05:00
<main>
{{ content | safe }}
</main>
2025-04-20 03:23:57 -05:00
{% include "layouts/footer.njk" %}
2025-04-20 03:23:57 -05:00
</body>
</html>