annotate core/themes/bartik/templates/block--search-form-block.html.twig @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 4c8ae668cc8c
children
rev   line source
Chris@0 1 {% extends "@classy/block/block--search-form-block.html.twig" %}
Chris@0 2 {#
Chris@0 3 /**
Chris@0 4 * @file
Chris@0 5 * Bartik's theme implementation for a search form block. Extends Classy's
Chris@0 6 * search form block template.
Chris@0 7 *
Chris@0 8 * Available variables:
Chris@0 9 * - content: The content of this block.
Chris@0 10 * - content_attributes: A list of HTML attributes applied to the main content
Chris@0 11 * tag that appears in the template.
Chris@0 12 *
Chris@0 13 * @see template_preprocess_block()
Chris@0 14 * @see search_preprocess_block()
Chris@0 15 *
Chris@0 16 * @ingroup themeable
Chris@0 17 */
Chris@0 18 #}
Chris@0 19 {% block content %}
Chris@0 20 <div{{ content_attributes.addClass('content', 'container-inline') }}>
Chris@0 21 {{ parent() }}
Chris@0 22 </div>
Chris@0 23 {% endblock %}