69 lines
1.9 KiB
HTML
69 lines
1.9 KiB
HTML
<!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" />
|
|
|
|
{% 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?cb={{ Globals.CacheBusting }}"
|
|
type="image/jpg"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="/static/assets/index.css?cb={{ Globals.CacheBusting }}"
|
|
/>
|
|
</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="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>
|
|
|
|
<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/assets/index.js?cb={{ Globals.CacheBusting }}"
|
|
type="module"
|
|
></script>
|
|
</body>
|
|
</html>
|