blob: 1ffc560594eb2b28f83157a964f9bfe7b2892520 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<link rel="stylesheet" href="{{ url_for('static',filename='css/style.css') }}" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.min.css') }}" />
<script src="https://unpkg.com/htmx.org@1.4.1"></script>
<title>Extinguish | {% block title %}{% endblock %}</title>
{% endblock %}
</head>
<body class="d-flex flex-column h-100">
<nav class="navbar navbar-dark bg-primary">
<div class="container-fluid">
<span class="navbar-brand mb-0">Extinguish</span>
</div>
</nav>
<div id="content">{% block content %}{% endblock %}</div>
<footer class="footer mt-auto py-3 bg-light fixed-bottom" style="padding: 0 15px;">
{% block footer %}
© Sample Copyright By <a href="http://domain.invalid/">you</a>.
{% endblock %}
</footer>
</body>
</html>
|