cap-atlantique: move nav template in own file (#57655)

This commit is contained in:
Thomas Jund 2021-10-18 15:22:43 +02:00
parent e31ea169c0
commit 4c4b722e29
2 changed files with 7 additions and 6 deletions

View File

@ -1,11 +1,7 @@
{% extends "combo/page_template.html" %}
{# move user infos block #}
{% block top-links %}
{% endblock %}
{% block nav-post %}
{% include 'includes/user-info.html' %}
{% endblock %}
{# user infos block is moved in includes/nav.html #}
{% block top-links %}{% endblock %}
{# add page header placeholder #}
{% block content-pre %}

View File

@ -0,0 +1,5 @@
{% extends "includes/nav.html" %}
{% block nav-post %}
{% include 'includes/user-info.html' %}
{% endblock %}