image-widget.html.twig in Drupal 8
Same filename in this branch
- 8 core/themes/seven/templates/image-widget.html.twig
- 8 core/modules/image/templates/image-widget.html.twig
- 8 core/themes/classy/templates/content-edit/image-widget.html.twig
- 8 core/themes/claro/templates/content-edit/image-widget.html.twig
- 8 core/themes/stable/templates/content-edit/image-widget.html.twig
- 8 core/themes/bartik/templates/classy/content-edit/image-widget.html.twig
- 8 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/image-widget.html.twig
Same filename and directory in other branches
Theme override for an image field widget.
Available variables:
- attributes: HTML attributes for the containing element.
- data: Render elements of the image widget.
See also
File
core/profiles/demo_umami/themes/umami/templates/classy/content-edit/image-widget.html.twigView source
- {#
- /**
- * @file
- * Theme override for an image field widget.
- *
- * Available variables:
- * - attributes: HTML attributes for the containing element.
- * - data: Render elements of the image widget.
- *
- * @see template_preprocess_image_widget()
- */
- #}
- <div{{ attributes }}>
- {% if data.preview %}
- <div class="image-preview">
- {{ data.preview }}
- </div>
- {% endif %}
- <div class="image-widget-data">
- {# Render widget data without the image preview that was output already. #}
- {{ data|without('preview') }}
- </div>
- </div>