audioplayer--soundmanager.html.twig 680 B

123456789101112131415161718192021222324
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for SoundManager audio player.
  5. *
  6. * Available variables:
  7. * - plugin_id: the name of the plugin being used for templating.
  8. * - plugin_theme: the name of the specific plugin theme, if it exists.
  9. * - files: array of render info for each file.
  10. * - settings: array of settings for thie player.
  11. *
  12. * @see template_preprocess_audioplayer__soundmanager()
  13. *
  14. * @ingroup themeable
  15. */
  16. #}
  17. <div class="audiofield">
  18. {% for file in files %}
  19. <div class="soundmanageraudio_frame">
  20. <a href="{{ file.url }}" class="sm2_button">{{ file.description }}</a>
  21. <label>{{ file.description }}</label>
  22. </div>
  23. {% endfor %}
  24. </div>