2025-01-08 21:13:26 +01:00

63 lines
1.6 KiB
Django/Jinja

{%- block doc -%}<!DOCTYPE html>{# Base de toutes les pages AutoSco #}
<html{% block html_attribs %}{% endblock html_attribs %}>
{%- block html %}
<head>
{%- block head %}
<title>{% block title %}{{title|default}}{% endblock title %}</title>
{%- block metas %}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{%- endblock metas %}
{%- block styles %}
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Domine">
<style>
body {
font-family: "Domine",Georgia,Times,"Times New Roman",serif;
font-size: 14pt;
margin: 8px;
padding: 0;
}
header {
display: grid;
justify-content: center;
margin-bottom: 16px;
}
div.titre1 {
font-size: 1.5em;
font-weight: bold;
margin-top: 12px;
}
.centered-description {
display: grid;
justify-content: center;
grid-template-columns: 1fr;
text-align: center;
}
</style>
{%- endblock styles %}
{%- endblock head %}
</head>
<body{% block body_attribs %}{% endblock body_attribs %}>
{% block body -%}
{%- block app_header %}
<header>
<a href="/"><img src="/AutoSco/static/logo.png" alt="Espace Langues - USPN" height="80px"/></a>
</header>
{%- endblock app_header %}
{% block navbar %}
{%- endblock navbar %}
{% block content -%}
{%- endblock content %}
{% block scripts %}
{%- endblock scripts %}
{%- endblock body %}
</body>
{%- endblock html %}
</html>
{% endblock doc -%}