Blame view

app/templates/base_page.html 1.14 KB
a6745c24   hitier   Include boostrap
1
<!doctype html>
2d7fcc61   hitier   New base page emb...
2
3
<html lang="en">
<head>
a6745c24   hitier   Include boostrap
4
5
6
7
    <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>
2d7fcc61   hitier   New base page emb...
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
</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>
a6745c24   hitier   Include boostrap
33
34
    <p>
        © 2020 IRAP - <a href="{{ url_for('main.index') }}" id="redirect">Plan de Charge</a> - <span>{{ config.VERSION }}</span>
2d7fcc61   hitier   New base page emb...
35
36
    </p>
</footer>
2d7fcc61   hitier   New base page emb...
37

a6745c24   hitier   Include boostrap
38
39
40
<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>
2d7fcc61   hitier   New base page emb...
41
</html>