base_page.html
1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
<title>{% if title %} {{title}} {% else %}Plan de Charge{%endif%}</title>
</head>
<body>
<header>
</header>
<section>
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<div id="messages">
{% for level, message in messages %}
<div class="alert alert-{{level}}" role="alert">{{ message }}</div>
{% endfor %}
</div>
{% endif %}
{% endwith %}
<div class="content">
{% block content %}{% endblock %}
</div>
</section>
<footer>
<p>
© 2020 IRAP - <a href="{{ url_for('main.index') }}" id="redirect">Plan de Charge</a> - <span>{{ config.VERSION }}</span>
</p>
</footer>
<script type="text/javascript" src="{{ url_for('static', filename='js/jquery-3.6.0.min.js') }}"></script>
<script type="text/javascript" src="{{ url_for('static', filename='js/bootstrap.bundle.min.js') }}"></script>
</body>
</html>