media-library-item.html.twig 599 B

12345678910111213141516171819202122
  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. <div{{ attributes }}>
  21. {{ content }}
  22. </div>