c98725b99b610a3c61edcc2de6383e6f9800804d
[yaffs-website] / web / core / modules / file / templates / file-audio.html.twig
1 {#
2 /**
3 * @file
4 * Default theme implementation to display the file entity as an audio tag.
5 *
6 * Available variables:
7 * - attributes: An array of HTML attributes, intended to be added to the
8 *   audio tag.
9 * - files: And array of files to be added as sources for the audio tag. Each
10 *   element is an array with the following elements:
11 *   - file: The full file object.
12 *   - source_attributes: An array of HTML attributes for to be added to the
13 *     source tag.
14 *
15 * @ingroup themeable
16 */
17 #}
18 <audio {{ attributes }}>
19   {% for file in files %}
20     <source {{ file.source_attributes }} />
21   {% endfor %}
22 </audio>