custom/plugins/WabWishlist/src/Resources/views/storefront/page/account/sidebar.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/account/sidebar.html.twig' %}
  2. {% block page_account_sidebar_link_profile %}
  3.     {{ parent() }}
  4.     {% if shopware.config.WabWishlist.config.AccountSidebarShow  %}
  5.         <a href="{{ path('wabs.wishlist.index') }}"
  6.            title="{{ shopware.config.WabWishlist.config.AccountSidebarText }}"
  7.            class="list-group-item list-group-item-action account-aside-item{% if controllerName == 'Wishlist' %} is-active {% endif %}">
  8.             {{ shopware.config.WabWishlist.config.AccountSidebarHover }}
  9.         </a>
  10.     {% endif %}
  11. {% endblock %}