custom/plugins/SchilderSysteme/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_footer %}
  3.     {{ dump(context.customer) }}
  4.     {% if context.customer %}
  5.         {% if not context.customer.guest and not headerWidget %}
  6.             {% if page.huebert_downloads %}
  7.                 <div class="card-footer account-aside-footer account-aside-header account-aside-downloads">
  8.                     Downloads
  9.                 </div>
  10.                 <div class="list-group list-group-flush account-aside-list-group">
  11.                     {% for download in page.huebert_downloads %}
  12.                         <a href="{{ path('frontend.download.page', {'name': download}) }}" title="{{ download }} downloads" class="list-group-item list-group-item-action account-aside-item {% if activeRoute is same as('frontend.download.page') %}{% if page.huebert_active is same as(download) %}is-active{% endif %}{% endif %}">
  13.                             {{ download }}
  14.                         </a>
  15.                     {% endfor %}
  16.                 </div>
  17.             {% endif %}
  18.         {% endif %}
  19.     {% endif %}
  20.     {{ parent() }}
  21. {% endblock %}