blob: ce18b3ac043edd1905433e03e5b88da82e240eea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{# This extend the same file from core to add a sign-up/sign-in or "my account" link to the "home page" nav menu. #}
{% extends "@core/navigation/main-nav.html.twig" %}
{% block secondary_nav %}
{{ parent() }}
{% if not checkAuthenticated() %}
<li>
<a href="{{ site.uri.public }}/account/sign-in" class="nav-highlight">{{ translate("SIGNIN") }}</a>
</li>
{% else %}
{% include "navigation/user-card.html.twig" %}
{% endif %}
{% endblock %}
|