clermont-ici: move nav template in own file (#57655)

This commit is contained in:
Thomas Jund 2021-10-18 17:34:27 +02:00
parent 2eef535bfb
commit 188d9731ff
2 changed files with 6 additions and 5 deletions

View File

@ -36,11 +36,6 @@
</span>
{% endblock %}
{% block menu %}
<h2 class="nav--title">vous êtes :</h2>
{{ block.super }}
{% endblock %}
{% block columns-top %}
<div class="top-column">
{% placeholder "columns-top" name="Entête de la Page" %}

View File

@ -0,0 +1,6 @@
{% extends "includes/nav.html" %}
{% block menu %}
<h2 class="nav--title">vous êtes :</h2>
{{ block.super }}
{% endblock %}