{% sw_extends '@Storefront/storefront/page/account/sidebar.html.twig' %}
{% block page_account_sidebar_footer %}
{% endblock %}
{% block page_account_sidebar_header %}
{% endblock %}
{% block page_account_sidebar_link_orders %}
{{parent()}}
{% if context.customer %}
{% if not context.customer.guest %}
{% block page_account_sidebar_logout %}
<a href="{{ path('frontend.account.logout.page') }}"
class="list-group-item list-group-item-action account-aside-item">
{{ "account.logout"|trans|sw_sanitize }}
</a>
{% endblock %}
{% else %}
{% block page_account_sidebar_guest_abort %}
<a href="{{ path('frontend.account.logout.page') }}"
data-account-guest-abort-button="true"
class="list-group-item list-group-item-action account-aside-item">
{{ "account.guestAbort"|trans|sw_sanitize }}
</a>
{% endblock %}
{% endif %}
{% endif %}
{% endblock %}