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

Open in your IDE?
  1. {% block page_product_detail_downloads %}
  2.     {% if product.customFields and product.customFields.downloads and product.customFields.downloads|length %}
  3.         {% for download in product.customFields.downloads %}
  4.         <a href="{{ download.media.url }}" target="_blank" class='product-detail__link'>
  5.             <div class="download-link-box">
  6.                 <span class="product-detail__link-text">{{ download.media.title }}</span>
  7.                 <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
  8.                     <path d="M3 8V2.5C3 2.36739 3.05268 2.24021 3.14645 2.14645C3.24021 2.05268 3.36739 2 3.5 2H9.5L13 5.5V8" stroke="#0284E3" stroke-linecap="round" stroke-linejoin="round"/>
  9.                     <path d="M9.5 2V5.5H13" stroke="#0284E3" stroke-linecap="round" stroke-linejoin="round"/>
  10.                     <path d="M3 12.5H4C4.26522 12.5 4.51957 12.3946 4.70711 12.2071C4.89464 12.0196 5 11.7652 5 11.5C5 11.2348 4.89464 10.9804 4.70711 10.7929C4.51957 10.6054 4.26522 10.5 4 10.5H3V13.5" stroke="#0284E3" stroke-linecap="round" stroke-linejoin="round"/>
  11.                     <path d="M13.5 10.5H11.75V13.5" stroke="#0284E3" stroke-linecap="round" stroke-linejoin="round"/>
  12.                     <path d="M13.25 12.25H11.75" stroke="#0284E3" stroke-linecap="round" stroke-linejoin="round"/>
  13.                     <path d="M8 13.5C8.39782 13.5 8.77936 13.342 9.06066 13.0607C9.34196 12.7794 9.5 12.3978 9.5 12C9.5 11.6022 9.34196 11.2206 9.06066 10.9393C8.77936 10.658 8.39782 10.5 8 10.5H7.125V13.5H8Z" stroke="#0284E3" stroke-linecap="round" stroke-linejoin="round"/>
  14.                 </svg>
  15.             </div>
  16.         </a>
  17.         {% endfor %}
  18.     {% endif %}
  19. {% endblock %}