views-ui-view-preview-section--exposed.html.twig
Same filename 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.
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
- {#
- /**
- * @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>
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.