This commit is contained in:
2024-11-14 17:41:30 +01:00
parent 4df672ddd5
commit 8fead1a010
36 changed files with 348 additions and 262 deletions

View File

@@ -5,11 +5,19 @@
<body>
<div id="content" class="py-12 md:py-16 lg:py-18 overflow-hidden">
<div id="content" class="overflow-hidden bg-dark">
{% block content %}{% endblock %}
</div>
{% include "partials/footer.html" %}
<script type="text/javascript" src="{{ get_url(path='js/custom.js')}}"></script>
</body>
<style>
.bg-dark {
background: rgb(15,15,15);
background: radial-gradient(circle, rgba(15,15,15,1) 0%, rgb(12, 0, 30) 50%, rgba(15,15,15,1) 100%);
}
</style>
</html>