{# /** * @file * 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 template_preprocess_media_library_item() * * @ingroup themeable */ #} {% if content.rendered_entity['#media'].field_media_video_file.entity %} {% set preview_link = content.rendered_entity['#media'].field_media_video_file.entity.uri.value %} {{ content|without('remove_button') }}
{{ content.remove_button }} {% else %} {{ content }} {% endif %}