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

Breadcrumb

  1. Drupal Core 11.1.x

media-library-item.html.twig

Same filename in this branch
  1. 11.1.x core/themes/stable9/templates/media-library/media-library-item.html.twig
  2. 11.1.x core/themes/claro/templates/classy/media-library/media-library-item.html.twig
  3. 11.1.x core/modules/media_library/templates/media-library-item.html.twig

Default theme implementation of a media library item.

This is used when displaying selected media items, either in the field widget or in the "Additional selected media" area when adding new media items in the media library modal dialog.

Available variables:

  • attributes: HTML attributes for the containing element.
  • content: The content of the media library item, plus any additional fields or elements surrounding it.

See also

template_preprocess_media_library_item()

2 theme calls to media-library-item.html.twig
AddFormBase::buildSelectedItemElement in core/modules/media_library/src/Form/AddFormBase.php
Returns a render array for a single pre-selected media item.
MediaLibraryWidget::formElement in core/modules/media_library/src/Plugin/Field/FieldWidget/MediaLibraryWidget.php
Returns the form for a single field widget.

File

core/profiles/demo_umami/themes/umami/templates/classy/media-library/media-library-item.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation of a media library item.
  5. *
  6. * This is used when displaying selected media items, either in the field
  7. * widget or in the "Additional selected media" area when adding new
  8. * media items in the media library modal dialog.
  9. *
  10. * Available variables:
  11. * - attributes: HTML attributes for the containing element.
  12. * - content: The content of the media library item, plus any additional
  13. * fields or elements surrounding it.
  14. *
  15. * @see template_preprocess_media_library_item()
  16. *
  17. * @ingroup themeable
  18. */
  19. #}
  20. {%
  21. set classes = [
  22. 'media-library-item',
  23. 'media-library-item--grid',
  24. ]
  25. %}
  26. <div{{ attributes.addClass(classes) }}>
  27. {{ content }}
  28. </div>

Related topics

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