{% sw_extends '@Storefront/storefront/layout/header/header.html.twig' %}
{% set premsWishlist = page.header.extensions.premsWishlist %}
{% block layout_header_actions_account %}
{% block wishlist_header_actions_icon %}
{% if premsWishlist.showWishlistIconInHeader == 1 %}
<div class="col-auto">
<div class="wishlist-header">
<span class="wishlist-heart">
<a rel="nofollow" class="btn wishlist-header-btn header-actions-btn" href="{{ path('frontend.PremsWishlist.index') }}"
title="{{ "prems-wishlist.index_link"|trans }}">
<span class="whishlist-header-icon">
{% sw_icon 'heart' %}
</span>
<span class="wishlist-header-name">
{{ "prems-wishlist.index_link"|trans }}
</span>
<span class="wishlist-count badge badge-primary" data-uri="{{ path('frontend.PremsWishlist.count') }}"></span>
</a>
</span>
</div>
</div>
{% endif %}
{% endblock %}
{{ parent() }}
{% endblock %}