custom/plugins/HuebertAccountAttributes/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.     {% if context.customer %}
  4.         {% if not context.customer.guest and not headerWidget %}
  5.             {% if page.huebert_downloads %}
  6.                 <div class="card-footer account-aside-footer account-aside-header account-aside-downloads">
  7.                     Downloads
  8.                 </div>
  9.                 <div class="list-group list-group-flush account-aside-list-group">
  10.                     {% for download in page.huebert_downloads %}
  11.                         <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 %}">
  12.                             {{ download }}
  13.                         </a>
  14.                     {% endfor %}
  15.                 </div>
  16.             {% endif %}
  17.         {% endif %}
  18.     {% endif %}
  19.     {{ parent() }}
  20. {% endblock %}