custom/plugins/KmPitchPrint/src/Resources/views/storefront/page/wishlist/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_head %}
  3.     {% sw_include '@Storefront/storefront/page/wishlist/meta.html.twig' %}
  4. {% endblock %}
  5. {% block base_content %}
  6.     {% block page_wishlist %}
  7.         <div class="cms-page wishlist-page">
  8.             {% if searchResult %}
  9.                 {% set searchResult = page.wishlist.productListing %}
  10.             {% endif %}
  11.             {% if offcanvas %}
  12.                 <template km-open-cart-offcanvas="true"></template>
  13.             {%endif%}
  14.             {% sw_include '@Storefront/storefront/page/wishlist/wishlist-pagelet.html.twig' with { searchResult: page.wishlist.productListing } %}
  15.         </div>
  16.     {% endblock %}
  17. {% endblock %}