9d43771c142fc711bbea35ab4ad06b0be0b217b2
[yaffs-website] / web / modules / contrib / media_entity / templates / media.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation to present a media entity.
5  *
6  * Available variables:
7  * - name: Name of the media.
8  * - content: Media content.
9  *
10  * @see template_preprocess_media()
11  *
12  * @ingroup themeable
13  */
14 #}
15 <article{{ attributes }}>
16   {% if content %}
17     {{ content }}
18   {% endif %}
19 </article>