www_mycelium/templates/_default/base.html

21 lines
692 B
HTML
Raw Normal View History

2024-05-03 20:15:09 +00:00
<!DOCTYPE html>
<html lang="en" charset="utf-8">
{% include "partials/head.html" %}
<body>
{% include "partials/header.html" %}
<div id="content" class="p-4 pt-24 lg:pt-0 sm:p-12 lg:p-0 overflow-hidden">
{% block content %}{% endblock %}
</div>
2024-05-21 05:34:29 +00:00
{% include "partials/cta.html" %}
2024-05-03 20:15:09 +00:00
{% include "partials/footer.html" %}
<script type="text/javascript" src="{{ get_url(path='js/custom.js')}}"></script>
</body>
2024-05-04 09:52:00 +00:00
</html>
<style>
body {
2024-05-21 05:34:29 +00:00
background: rgb(15,6,47);
background: radial-gradient(circle, rgba(15,6,47,1) 0%, rgba(3,22,53,1) 22%, rgba(0,2,5,1) 89%, rgba(0,0,0,0.9990589985994398) 100%);
}
2024-05-04 09:52:00 +00:00
</style>