You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
563 B
29 lines
563 B
1 year ago
|
{#
|
||
|
/**
|
||
|
* @file
|
||
|
* Theme override to display a media item.
|
||
|
*
|
||
|
* Available variables:
|
||
|
* - name: Name of the media.
|
||
|
* - content: Media content.
|
||
|
*
|
||
|
* @see template_preprocess_media()
|
||
|
*
|
||
|
* @ingroup themeable
|
||
|
*/
|
||
|
#}
|
||
|
{%
|
||
|
set classes = [
|
||
|
'media',
|
||
|
'media--type-' ~ media.bundle()|clean_class,
|
||
|
not media.isPublished() ? 'media--unpublished',
|
||
|
view_mode ? 'media--view-mode-' ~ view_mode|clean_class,
|
||
|
]
|
||
|
%}
|
||
|
<article{{ attributes.addClass(classes) }}>
|
||
|
{{ title_suffix.contextual_links }}
|
||
|
{% if content %}
|
||
|
{{ content }}
|
||
|
{% endif %}
|
||
|
</article>
|