rouen-metropole: add a link to return on portal(#62791)

This commit is contained in:
Emmanuel Cazenave 2022-03-15 16:59:53 +01:00
parent 228420edf8
commit 200d8451f4
2 changed files with 18 additions and 1 deletions

View File

@ -200,7 +200,15 @@ body.authentic-page, body.registration-page {
display: none;
}
}
div#nav-wrapper {
div.gru-nav-wrapper {
background: $gray-light;
li:hover > a {
background-color: $gray-light;
color: black;
text-decoration: underline;
}
}
#nav > *:not(#back-portal) {
display: none;
}

View File

@ -0,0 +1,9 @@
{% extends "authentic2/base.html" %}
{% block menu_right %}
<ul id="back-portal">
<li>
<a href="{% firstof home_url portal_url %}">Retourner au portail</a>
</li>
</ul>
{% endblock %}