custom/plugins/PremsWishlist/src/Resources/views/storefront/layout/header/header.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/header/header.html.twig' %}
  2. {% set premsWishlist = page.header.extensions.premsWishlist %}
  3. {% block layout_header_actions_account %}
  4.     {% block wishlist_header_actions_icon %}
  5.         {% if premsWishlist.showWishlistIconInHeader == 1 %}
  6.             <div class="col-auto">
  7.                 <div class="wishlist-header">
  8.                     <span class="wishlist-heart">
  9.                         <a rel="nofollow" class="btn wishlist-header-btn header-actions-btn" href="{{ path('frontend.PremsWishlist.index') }}"
  10.                            title="{{ "prems-wishlist.index_link"|trans }}">
  11.                             <span class="whishlist-header-icon">
  12.                                 {% sw_icon 'heart' %}
  13.                             </span>
  14.                             <span class="wishlist-header-name">
  15.                                 {{ "prems-wishlist.index_link"|trans }}
  16.                             </span>
  17.                             <span class="wishlist-count badge badge-primary" data-uri="{{ path('frontend.PremsWishlist.count') }}"></span>
  18.                         </a>
  19.                     </span>
  20.                 </div>
  21.             </div>
  22.         {% endif %}
  23.     {% endblock %}
  24.     {{ parent() }}
  25. {% endblock %}