{# /** * @file * Olivero's theme implementation for a search form block. Based on Classy's * search form block template. * * Available variables: * - content: The content of this block. * - content_attributes: A list of HTML attributes applied to the main content * tag that appears in the template. * * @see template_preprocess_block() * @see search_preprocess_block() * * @ingroup themeable */ #} {% set classes = [ 'block', 'block-search', ] %} {{ title_prefix }} {% if label %} {{ label }} {% endif %} {{ title_suffix }} {% block content %} {{ content }} {% endblock %}