Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / classy / templates / views / views-exposed-form.html.twig
1 {#
2 /**
3  * @file
4  * Theme override for a views exposed form.
5  *
6  * Available variables:
7  * - form: A render element representing the form.
8  *
9  * @see template_preprocess_views_exposed_form()
10  */
11 #}
12 {% if q is not empty %}
13   {#
14     This ensures that, if clean URLs are off, the 'q' is added first,
15     as a hidden form element, so that it shows up first in the POST URL.
16   #}
17 {{ q }}
18 {% endif %}
19 <div class="form--inline clearfix">
20   {{ form }}
21 </div>