filter-caption.html.twig

Same filename in this branch
  1. 8.9.x core/themes/seven/templates/classy/content-edit/filter-caption.html.twig
  2. 8.9.x core/themes/claro/templates/classy/content-edit/filter-caption.html.twig
  3. 8.9.x core/themes/bartik/templates/classy/content-edit/filter-caption.html.twig
  4. 8.9.x core/themes/stable/templates/content-edit/filter-caption.html.twig
  5. 8.9.x core/themes/classy/templates/content-edit/filter-caption.html.twig
  6. 8.9.x core/modules/filter/templates/filter-caption.html.twig
Same filename and directory in other branches
  1. 9 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/filter-caption.html.twig
  2. 9 core/themes/stable9/templates/content-edit/filter-caption.html.twig
  3. 9 core/themes/seven/templates/classy/content-edit/filter-caption.html.twig
  4. 9 core/themes/claro/templates/classy/content-edit/filter-caption.html.twig
  5. 9 core/themes/bartik/templates/classy/content-edit/filter-caption.html.twig
  6. 9 core/themes/stable/templates/content-edit/filter-caption.html.twig
  7. 9 core/themes/starterkit_theme/templates/content-edit/filter-caption.html.twig
  8. 9 core/themes/classy/templates/content-edit/filter-caption.html.twig
  9. 9 core/modules/filter/templates/filter-caption.html.twig
  10. 10 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/filter-caption.html.twig
  11. 10 core/themes/stable9/templates/content-edit/filter-caption.html.twig
  12. 10 core/themes/claro/templates/classy/content-edit/filter-caption.html.twig
  13. 10 core/themes/starterkit_theme/templates/content-edit/filter-caption.html.twig
  14. 10 core/modules/filter/templates/filter-caption.html.twig
  15. 11.x core/profiles/demo_umami/themes/umami/templates/classy/content-edit/filter-caption.html.twig
  16. 11.x core/themes/stable9/templates/content-edit/filter-caption.html.twig
  17. 11.x core/themes/claro/templates/classy/content-edit/filter-caption.html.twig
  18. 11.x core/themes/starterkit_theme/templates/content-edit/filter-caption.html.twig
  19. 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/profiles/demo_umami/themes/umami/templates/classy/content-edit/filter-caption.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a filter caption.
  5. *
  6. * Returns HTML for a captioned image, audio, video or other tag.
  7. *
  8. * Available variables
  9. * - string node: The complete HTML tag whose contents are being captioned.
  10. * - string tag: The name of the HTML tag whose contents are being captioned.
  11. * - string caption: The caption text.
  12. * - string classes: The classes of the captioned HTML tag.
  13. */
  14. #}
  15. <figure role="group" class="caption caption-{{ tag }}{%- if classes %} {{ classes }}{%- endif %}">
  16. {{ node }}
  17. <figcaption>{{ caption }}</figcaption>
  18. </figure>

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.