60 lines
1.7 KiB
HTML
60 lines
1.7 KiB
HTML
<!doctype html>
|
|
<html lang="fr" class="h-100" data-bs-theme="dark">
|
|
{% 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 %}
|
|
|
|
{% block main %}{% endblock %}
|
|
{% endblock %}
|
|
</main>
|
|
|
|
<footer class="footer mt-auto py-2 bg-body-tertiary">
|
|
<div class="container">
|
|
<span class="text-body-secondary">
|
|
<a
|
|
class="link-secondary text-bold"
|
|
target="_blank"
|
|
href="https://git.readonly.ch/bouzoure/popvaud-people"
|
|
>
|
|
<i class="bi-code-slash"></i>
|
|
Code source
|
|
</a>
|
|
</span>
|
|
|
|
<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>
|