claro-8.x-1.x-dev/templates/views-exposed-form.html.twig
templates/views-exposed-form.html.twig
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | {# /** * @file * Theme override for a views exposed form. * * Available variables: * - form: A render element representing the form. * * @see template_preprocess_views_exposed_form() */ #} {% if q is not empty %} {# This ensures that, if clean URLs are off, the 'q' is added first, as a hidden form element, so that it shows up first in the POST URL. #} {{ q }} {% endif %} {{ form }} |