site/_includes/layouts/donate/base.njk
Ruben 0f20abe7c0
All checks were successful
/ build (push) Successful in 4m33s
update bases, fix windows on other pages
2025-10-19 00:58:10 -05:00

34 lines
No EOL
712 B
Text

---
title: base
---
<!DOCTYPE html>
<html lang="en">
<head>
{% include "layouts/header.njk" %}
<script async src="https://js.stripe.com/v3/buy-button.js"></script>
</head>
<body>
<bg-gradient aria-hidden="true"></bg-gradient>
<bg-image aria-hidden="true"></bg-image>
{% include "layouts/navbar.njk" %}
<!-- settings windows model -->
{% include "layouts/settings.njk" %}
<!-- main content -->
<content-wrapper>
<main>
{{ content | safe }}
</main>
{% include "layouts/footer.njk" %}
</content-wrapper>
<!-- element used for our alt popup -->
<div class="alt-popup" id="alt-popup" aria-hidden="true"></div>
</body>
</html>