12345678910111213141516171819202122232425262728 |
- {#
- /**
- * @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.id()|clean_class,
- ]
- %}
- <article{{ attributes.addClass(classes) }}>
- {{ title_suffix.contextual_links }}
- {% if content %}
- {{ content }}
- {% endif %}
- </article>
|