site/_includes/layouts/base.njk

33 lines
639 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
<!-- settings windows model -->
{% include "layouts/settings.njk" %}
2025-04-20 03:23:57 -05:00
<!-- main content -->
<content-wrapper>
<main>
{{ content | safe }}
</main>
2025-04-20 03:23:57 -05:00
{% include "layouts/footer.njk" %}
</content-wrapper>
<!-- element used for our alt popup -->
<div class="alt-popup" id="alt-popup" aria-hidden="true"></div>
2025-04-20 03:23:57 -05:00
</body>
</html>