views-ui-view-preview-section--exposed.html.twig

Same filename and directory in other branches
  1. 9 core/themes/claro/templates/views/views-ui-view-preview-section--exposed.html.twig
  2. 10 core/themes/claro/templates/views/views-ui-view-preview-section--exposed.html.twig

Theme override for a views UI preview section.

Available variables:

  • title: The human readable section title.
  • links: A list of contextual links.
  • content: The content for this section preview.

See also

template_preprocess_views_ui_view_preview_section()

File

core/themes/claro/templates/views/views-ui-view-preview-section--exposed.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a views UI preview section.
  5. *
  6. * Available variables:
  7. * - title: The human readable section title.
  8. * - links: A list of contextual links.
  9. * - content: The content for this section preview.
  10. *
  11. * @see template_preprocess_views_ui_view_preview_section()
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. <h1 class="section-title">{{ title }}</h1>
  17. {% if links %}
  18. <div class="contextual">{{ links }}</div>
  19. {% endif %}
  20. <div class="views-exposed-form views-exposed-form--preview">
  21. {{ content }}
  22. </div>

Related topics


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