Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / themes / stable / templates / content / media.html.twig
1 {#
2 /**
3  * @file
4  * Theme override to display a media item.
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   {{ title_suffix.contextual_links }}
17   {% if content %}
18     {{ content }}
19   {% endif %}
20 </article>