Prettier templates
This commit is contained in:
parent
d98268d9d6
commit
7b1cb83742
33 changed files with 4207 additions and 4374 deletions
|
|
@ -1,68 +1,72 @@
|
|||
<!doctype html>
|
||||
<html lang="fr" class="h-100" data-bs-theme="{{ Globals.ColorMode }}">
|
||||
{% include "partials/easter_egg.html" %}
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
{% include "partials/easter_egg.html" %}
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
{% set PageTitleSuffix = "Camarades | POP Vaud" %}
|
||||
{% if PageTitle %}
|
||||
<title>{{ PageTitle }} | {{ PageTitleSuffix }}</title>
|
||||
{% else %}
|
||||
<title>{{ PageTitleSuffix }}</title>
|
||||
{% endif %}
|
||||
|
||||
<link rel="shortcut icon" href="/static/images/favicon.jpg" type="image/jpg">
|
||||
<link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/static/bootstrap-icons/bootstrap-icons.min.css">
|
||||
<link rel="stylesheet" href="/static/main.css">
|
||||
{% block stylesheet %}{% endblock %}
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<main class="flex-shrink-0">
|
||||
{% block body %}
|
||||
{% block header %}
|
||||
{% include "partials/header.html" %}
|
||||
{% endblock %}
|
||||
{% set PageTitleSuffix = "Camarades | POP Vaud" %}
|
||||
{% if PageTitle %}
|
||||
<title>{{ PageTitle }} | {{ PageTitleSuffix }}</title>
|
||||
{% else %}
|
||||
<title>{{ PageTitleSuffix }}</title>
|
||||
{% endif %}
|
||||
|
||||
{% block main %}{% endblock %}
|
||||
{% endblock %}
|
||||
</main>
|
||||
<link
|
||||
rel="shortcut icon"
|
||||
href="/static/images/favicon.jpg"
|
||||
type="image/jpg"
|
||||
/>
|
||||
<link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css" />
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="/static/bootstrap-icons/bootstrap-icons.min.css"
|
||||
/>
|
||||
<link rel="stylesheet" href="/static/main.css" />
|
||||
{% block stylesheet %}{% endblock %}
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<main class="flex-shrink-0">
|
||||
{% block body %}
|
||||
{% block header %}
|
||||
{% include "partials/header.html" %}
|
||||
{% endblock %}
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-body-tertiary">
|
||||
<div class="container">
|
||||
<span class="text-body-secondary">
|
||||
<a
|
||||
class="text-body-secondary me-2"
|
||||
target="_blank"
|
||||
href="https://git.readonly.ch/bouzoure/pop-camarades"
|
||||
>
|
||||
<i class="bi-code-slash"></i>
|
||||
Code source
|
||||
</a>
|
||||
<a
|
||||
class="text-body-secondary"
|
||||
target="_blank"
|
||||
href="/licences"
|
||||
>
|
||||
<i class="bi-journal-bookmark"></i>
|
||||
Licences
|
||||
</a>
|
||||
</span>
|
||||
{% block main %}
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
</main>
|
||||
|
||||
<div class="float-end">
|
||||
<span class="text-body-secondary">
|
||||
<i class="bi-stopwatch me-1"></i>
|
||||
{{ Globals.TimeStart | time_diff }}
|
||||
<span>ms</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<footer class="footer mt-auto py-2 bg-body-tertiary">
|
||||
<div class="container">
|
||||
<span class="text-body-secondary">
|
||||
<a
|
||||
class="text-body-secondary me-2"
|
||||
target="_blank"
|
||||
href="https://git.readonly.ch/bouzoure/pop-camarades"
|
||||
>
|
||||
<i class="bi-code-slash"></i>
|
||||
Code source
|
||||
</a>
|
||||
<a class="text-body-secondary" target="_blank" href="/licenses">
|
||||
<i class="bi-journal-bookmark"></i>
|
||||
Licences
|
||||
</a>
|
||||
</span>
|
||||
|
||||
<script src="/static/jquery/jquery.min.js"></script>
|
||||
<script src="/static/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="/static/functions.js"></script>
|
||||
{% block javascript %}{% endblock %}
|
||||
</body>
|
||||
<div class="float-end">
|
||||
<span class="text-body-secondary">
|
||||
<i class="bi-stopwatch me-1"></i>
|
||||
{{ Globals.TimeStart | time_diff }}
|
||||
<span>ms</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="/static/jquery/jquery.min.js"></script>
|
||||
<script src="/static/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="/static/functions.js"></script>
|
||||
{% block javascript %}{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue