You are here

media.html.twig in Drupal 10

Theme override to display a media item.

Available variables:

  • media: The media item, with limited access to object properties and methods.
  • name: Name of the media.
  • content: Media content.

File

core/themes/olivero/templates/content/media.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override to display a media item.
  5. *
  6. * Available variables:
  7. * - media: The media item, with limited access to object properties and
  8. * methods.
  9. * - name: Name of the media.
  10. * - content: Media content.
  11. *
  12. * @see template_preprocess_media()
  13. *
  14. * @ingroup themeable
  15. */
  16. #}
  17. {%
  18. set classes = [
  19. 'media',
  20. 'media--type-' ~ media.bundle()|clean_class,
  21. not media.isPublished() ? 'media--unpublished',
  22. view_mode ? 'media--view-mode-' ~ view_mode|clean_class,
  23. ]
  24. %}
  25. <div{{ attributes.addClass(classes) }}>
  26. {{ title_suffix.contextual_links }}
  27. {% if content %}
  28. {{ content }}
  29. {% endif %}
  30. </div>

Related topics