You are here

views-exposed-form.html.twig in Express 8

Default theme implementation of a views exposed form.

Available variables:

  • form: A render element representing the form.

File

themes/contrib/bootstrap/templates/views/views-exposed-form.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation of a views exposed form.
  5. *
  6. * Available variables:
  7. * - form: A render element representing the form.
  8. *
  9. * @ingroup templates
  10. *
  11. * @see template_preprocess_views_exposed_form()
  12. */
  13. #}
  14. {% if q is not empty %}
  15. {#
  16. This ensures that, if clean URLs are off, the 'q' is added first,
  17. as a hidden form element, so that it shows up first in the POST URL.
  18. #}
  19. {{ q }}
  20. {% endif %}
  21. <div class="form--inline form-inline clearfix">
  22. {{ form }}
  23. </div>