Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

media.html.twig

Same filename in this branch
  1. 11.1.x core/profiles/demo_umami/themes/umami/templates/classy/content/media.html.twig
  2. 11.1.x core/themes/stable9/templates/content/media.html.twig
  3. 11.1.x core/themes/starterkit_theme/templates/content/media.html.twig
  4. 11.1.x core/themes/claro/templates/classy/content/media.html.twig
  5. 11.1.x core/modules/media/templates/media.html.twig

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.

See also

template_preprocess_media()

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

Theme system overview
Functions and templates for the user interface that themes can override.
RSS feed
Powered by Drupal