{% sw_extends '@CrehlerMojebambinoEngine/storefront/page/account/sidebar.html.twig' %}
{% block page_account_sidebar_link_home %}
<a href="{{ path('frontend.account.home.page') }}" rel="nofollow"
title="{{ "account.overviewLink"|trans|striptags }}"
class="list-group-item list-group-item-action account-aside-item{% if controllerName is same as('AccountProfile') and controllerAction is same as('index') %} is-active{% endif %}">
{{ "account.overviewLink"|trans|sw_sanitize }}
</a>
{% endblock %}
{% block page_account_sidebar_link_profile %}
<a href="{{ path('frontend.account.profile.page') }}" rel="nofollow"
title="{{ "account.profileLink"|trans|striptags }}"
class="list-group-item list-group-item-action account-aside-item{% if controllerName is same as('AccountProfile') and controllerAction is same as('profileOverview') %} is-active{% endif %}">
{{ "account.profileLink"|trans|sw_sanitize }}
</a>
{% endblock %}
{% block page_account_sidebar_link_address %}
<a href="{{ path('frontend.account.address.page') }}" rel="nofollow"
title="{{ "account.addressLink"|trans|striptags }}"
class="list-group-item list-group-item-action account-aside-item{% if controllerName is same as('Address') and controllerAction is same as('accountAddressOverview') %} is-active{% endif %}">
{{ "account.addressLink"|trans|sw_sanitize }}
</a>
{% endblock %}
{% block page_account_sidebar_link_payment %}
<a href="{{ path('frontend.account.payment.page') }}" rel="nofollow"
title="{{ "account.paymentLink"|trans|striptags }}"
class="list-group-item list-group-item-action account-aside-item{% if controllerName is same as('AccountPayment') and controllerAction is same as('paymentOverview') %} is-active{% endif %}">
{{ "account.paymentLink"|trans|sw_sanitize }}
</a>
{% endblock %}
{% block page_account_sidebar_link_orders %}
<a href="{{ path('frontend.account.order.page') }}" rel="nofollow"
title="{{ "account.ordersLink"|trans|striptags }}"
class="list-group-item list-group-item-action account-aside-item{% if controllerName is same as('AccountOrder') and controllerAction is same as('orderOverview') %} is-active{% endif %}">
{{ "account.ordersLink"|trans|sw_sanitize }}
</a>
{% endblock %}
{% block page_account_sidebar_logout %}
<a href="{{ path('frontend.account.logout.page') }}" rel="nofollow"
class="btn btn-link account-aside-btn">
{% sw_icon 'log-out' %}
{{ "account.logout"|trans|sw_sanitize }}
</a>
{% endblock %}
{% block page_account_sidebar_guest_abort %}
<a href="{{ path('frontend.account.logout.page') }}" rel="nofollow"
class="btn btn-link account-aside-btn">
{% sw_icon 'log-out' %}
{{ "account.guestAbort"|trans|sw_sanitize }}
</a>
{% endblock %}