themes/BootstrapTheme/templates/bundles/SyliusShopBundle/Product/Show/_files.html.twig line 1

Open in your IDE?
  1. {% if product is defined and product.files is defined and product.files is not empty %}
  2.     <ul class="m-0 p-0 bloc-files list-unstyled pt-3">
  3.     {% for file in product.files %}
  4.         {% if file.path is not empty %}
  5.             <li class="mb-2"><a href="/{{ file.path }}" target="_blank" class="btn-link  bg-pink {% if file.code != "certificate" %} bg-grey-dark {% endif %} px-2 minw-verybig text-center font-14  text-transform-none py-1 "><span class="icon-pdf">{{'app.product.download'|trans}} {{ file.name }} </span></a></li>
  6.         {% endif %}
  7.     {% endfor %}
  8.     </ul>
  9. {% endif %}