aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/account/templates/navigation/main-nav.html.twig
blob: dfe2fc8bc0304d3cdd2b0d6ea610c57e2e51f2e7 (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 %}