From a50772fa115ae0bbbc0d3460e1456fa597c1ef53 Mon Sep 17 00:00:00 2001 From: Barbara Losonc <barbara@vallic.com> Date: Mon, 9 Dec 2024 15:11:27 +0100 Subject: [PATCH] added classes for remote video embed --- templates/media/media--remote-video.html.twig | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 templates/media/media--remote-video.html.twig diff --git a/templates/media/media--remote-video.html.twig b/templates/media/media--remote-video.html.twig new file mode 100644 index 0000000..7b3cdad --- /dev/null +++ b/templates/media/media--remote-video.html.twig @@ -0,0 +1,37 @@ +{# +/** + * @file + * Default theme implementation to present a media item. + * + * Available variables: + * - media: The media item, with limited access to object properties and + * methods. Only method names starting with "get", "has", or "is" and + * a few common methods such as "id", "label", and "bundle" are available. + * For example: + * - entity.getEntityTypeId() will return the entity type ID. + * - entity.hasField('field_example') returns TRUE if the entity includes + * field_example. (This does not indicate the presence of a value in this + * field.) + * Calling other methods, such as entity.delete(), will result in + * an exception. + * See \Drupal\Core\Entity\EntityInterface for a full list of methods. + * - name: Name of the media item. + * - content: Media content. + * - title_prefix: Additional output populated by modules, intended to be + * displayed in front of the main title tag that appears in the template. + * - title_suffix: Additional output populated by modules, intended to be + * displayed after the main title tag that appears in the template. + * - view_mode: View mode; for example, "teaser" or "full". + * - attributes: HTML attributes for the containing element. + * - title_attributes: Same as attributes, except applied to the main title + * tag that appears in the template. + * + * @see template_preprocess_media() + * + * @ingroup themeable + */ +#} +<div class="responsive-embed widescreen"> + {{ title_suffix.contextual_links }} + {{ content }} +</div> -- GitLab