www_mycelium/templates/_default/base.html

21 lines
781 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-06 21:46:03 +00:00
{% include "partials/banner.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 {
--tw-bg-opacity: 1;
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(208,198,255,0.25) 15%, rgba(255,255,255,0.2) 30%, rgba(208,198,255,0.25) 45%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,0.2) 95%); }
</style>