views-ui-view-preview-section--exposed.html.twig in Drupal 10
Same filename and directory in other branches
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.
File
core/themes/claro/templates/views/views-ui-view-preview-section--exposed.html.twigView source
- {#
- /**
- * @file
- * 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 template_preprocess_views_ui_view_preview_section()
- *
- * @ingroup themeable
- */
- #}
- <h1 class="section-title">{{ title }}</h1>
- {% if links %}
- <div class="contextual">{{ links }}</div>
- {% endif %}
- <div class="views-exposed-form views-exposed-form--preview">
- {{ content }}
- </div>