custom/static-plugins/CytexTheme/src/Resources/views/storefront/page/product-detail/downloads.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@WexoProductDownloads/storefront/page/product-detail/downloads.html.twig' %}
  2.  {% block page_product_detail_downloads_content %}
  3.          {% for mediaFile in page.product.wexoProductDownloads.files %}
  4.              {% block page_product_detail_downloads_content_file %}
  5.                      <a href="{{ mediaFile.url }}" target="_blank"
  6.                         title="{% if page.product.wexoProductDownloads.showDownloadTitlePrefix %}{{ "wexoProductDownloads.detail.prefix"|trans }}{% endif %}{{ mediaFile.title }}"
  7.                         {% if page.product.wexoProductDownloads.forceLinkDownload %}download{% endif %}>
  8.                          {% block page_product_detail_downloads_content_file_name %}
  9.                              {{ parent() }}
  10.                          {% endblock %}
  11.                      </a>
  12.              {% endblock %}
  13.          {% endfor %}
  14.  {% endblock %}