You are here

audiofield-download-links.html.twig in AudioField 8

Default theme implementation for AudioField audioplayer download links.

Available variables:

  • links: downloa

File

templates/audiofield-download-links.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for AudioField audioplayer download links.
  5. *
  6. * Available variables:
  7. * - links: downloa
  8. *
  9. * @ingroup themeable
  10. */
  11. #}
  12. <table class="audiofield-downloads">
  13. <caption>{{ 'Download files:'|trans }}</caption>
  14. {% for file in links %}
  15. <tr>
  16. <td class="audiofield-download-link">{{ file.link }}</td>
  17. </tr>
  18. {% endfor %}
  19. </table>