filter-caption.html.twig
Same filename in this branch
- 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/content-edit/filter-caption.html.twig
- 8.9.x core/themes/claro/templates/classy/content-edit/filter-caption.html.twig
- 8.9.x core/themes/bartik/templates/classy/content-edit/filter-caption.html.twig
- 8.9.x core/themes/stable/templates/content-edit/filter-caption.html.twig
- 8.9.x core/themes/classy/templates/content-edit/filter-caption.html.twig
- 8.9.x core/modules/filter/templates/filter-caption.html.twig
Same filename in other branches
- 9 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/filter-caption.html.twig
- 9 core/themes/stable9/templates/content-edit/filter-caption.html.twig
- 9 core/themes/seven/templates/classy/content-edit/filter-caption.html.twig
- 9 core/themes/claro/templates/classy/content-edit/filter-caption.html.twig
- 9 core/themes/bartik/templates/classy/content-edit/filter-caption.html.twig
- 9 core/themes/stable/templates/content-edit/filter-caption.html.twig
- 9 core/themes/starterkit_theme/templates/content-edit/filter-caption.html.twig
- 9 core/themes/classy/templates/content-edit/filter-caption.html.twig
- 9 core/modules/filter/templates/filter-caption.html.twig
- 10 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/filter-caption.html.twig
- 10 core/themes/stable9/templates/content-edit/filter-caption.html.twig
- 10 core/themes/claro/templates/classy/content-edit/filter-caption.html.twig
- 10 core/themes/starterkit_theme/templates/content-edit/filter-caption.html.twig
- 10 core/modules/filter/templates/filter-caption.html.twig
- 11.x core/profiles/demo_umami/themes/umami/templates/classy/content-edit/filter-caption.html.twig
- 11.x core/themes/stable9/templates/content-edit/filter-caption.html.twig
- 11.x core/themes/claro/templates/classy/content-edit/filter-caption.html.twig
- 11.x core/themes/starterkit_theme/templates/content-edit/filter-caption.html.twig
- 11.x core/modules/filter/templates/filter-caption.html.twig
Theme override for a filter caption.
Returns HTML for a captioned image, audio, video or other tag.
Available variables
- string node: The complete HTML tag whose contents are being captioned.
- string tag: The name of the HTML tag whose contents are being captioned.
- string caption: The caption text.
- string classes: The classes of the captioned HTML tag.
1 theme call to filter-caption.html.twig
- FilterCaption::process in core/
modules/ filter/ src/ Plugin/ Filter/ FilterCaption.php - Performs the filter processing.
File
-
core/
themes/ seven/ templates/ classy/ content-edit/ filter-caption.html.twig
View source
- {#
- /**
- * @file
- * Theme override for a filter caption.
- *
- * Returns HTML for a captioned image, audio, video or other tag.
- *
- * Available variables
- * - string node: The complete HTML tag whose contents are being captioned.
- * - string tag: The name of the HTML tag whose contents are being captioned.
- * - string caption: The caption text.
- * - string classes: The classes of the captioned HTML tag.
- */
- #}
- <figure role="group" class="caption caption-{{ tag }}{%- if classes %} {{ classes }}{%- endif %}">
- {{ node }}
- <figcaption>{{ caption }}</figcaption>
- </figure>
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.