brass/templates/base.html
2024-07-16 23:13:10 +02:00

75 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Brass - Brasiwa Leipzig</title>
<link rel="stylesheet" href="/static/bulma.min.css">
<script src="/static/htmx.min.js"></script>
<script src="/static/response-targets.js"></script>
<style>
.feather {
width: 24px;
height: 24px;
stroke: currentColor;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
fill: none;
}
[class*=" icon"],
[class^=icon] {
display: inline-block;
width: 1em;
height: 1em;
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
line-height: 1;
position: relative;
top: -.05em;
vertical-align: middle;
}
.result {
visibility: hidden;
}
.fadeout {
visibility: visible;
opacity: 0;
transition: opacity 2s ease-in;
}
section.htmx-request {
visibility: hidden;
}
</style>
</head>
<body class="hero is-fullheight" hx-ext="response-targets">
{% block body %}
{% endblock %}
<footer class="footer mt-auto">
<div class="content level">
<p class="level-item has-text-centered">
<a class="link is-info">Datenschutz &amp; Impressum</a>
</p>
<p class="level-item has-text-centered">
<a class="link is-info">verwendete Softwarebibliotheken</a>
</p>
<p class="level-item has-text-centered">
<a class="link is-info">Quellcode</a>
</p>
</div>
</footer>
</body>
</html>