templates/nodes/file.html.twig line 1

Open in your IDE?
  1. {% cache cache_node('module.' ~ module.id) tags(cache_node(module.id)) %}
  2. <section class="files-section">
  3. <div class="files-list">
  4. {% for item in module.children %}
  5. <div class="file-item">
  6. <span>{{ item.vars.name|default(item.vars.file.path) }}</span>
  7. <span>
  8. <a href="{{ asset(item.vars.file.path) }}" class="button-primary" download>
  9. <svg aria-label="Ikona pliku">
  10. <use xlink:href="#pdf-download-icon"></use>
  11. </svg>
  12. pobierz
  13. </a>
  14. </span>
  15. </div>
  16. {% endfor %}
  17. </div>
  18. </section>
  19. {% endcache %}