PCv5/app/templates/base/base.html

27 lines
587 B
HTML
Raw Normal View History

2018-02-23 23:34:06 +01:00
<!DOCTYPE html>
<html lang="fr-FR">
{% include "base/head.html" with context %}
2018-02-23 23:34:06 +01:00
<body>
<div><a class="skip-to-content-link" href="#main-content">Aller directement au contenu</a></div>
2018-02-23 23:34:06 +01:00
{% include "base/navbar.html" %}
<div class=container>
<header>
<div class=title>{% block title %}<h1>Planète Casio</h1>{% endblock %}</div>
{% include "base/header.html" %}
</header>
{% include "base/flash.html" %}
{% block content %}
2023-06-27 23:28:32 +02:00
<div id="main-content"></div>
{% endblock %}
2018-02-23 23:34:06 +01:00
{% include "base/footer.html" %}
</div>
2018-02-23 23:34:06 +01:00
{% include "base/scripts.html" %}
</body>
</html>