villeneuve-dascq: isolate user-info template (#52275)

This commit is contained in:
Thomas Jund 2021-03-29 17:11:44 +02:00
parent 2bcd87decf
commit c210f0bce3
2 changed files with 8 additions and 7 deletions

View File

@ -10,13 +10,6 @@
</h1>
{% endblock %}
{% block user-info %}
<span class="theme-back-home">
<a href="{{portal_url}}" title="retour à laccueil">Accueil</a>
</span>
{{ block.super }}
{% endblock %}
{% block before-main-content %}
<div class="pwa-navigation--wrapper">
{{ block.super }}

View File

@ -0,0 +1,8 @@
{% extends "includes/user-info.html" %}
{% block user-info %}
<span class="theme-back-home">
<a href="{{portal_url}}" title="retour à laccueil">Accueil</a>
</span>
{{ block.super }}
{% endblock %}