diff --git a/web/themes/custom/geofresco/src/templates/layout/region--header-tabs.html.twig b/web/themes/custom/geofresco/src/templates/layout/region--header-tabs.html.twig new file mode 100644 index 0000000..a300f9b --- /dev/null +++ b/web/themes/custom/geofresco/src/templates/layout/region--header-tabs.html.twig @@ -0,0 +1,22 @@ +{# Override from Octavia: octavia/src/templates/layout/region--header-tabs.html.twig +/** + * @file + * Theme override to display a region. + * + * Available variables: + * - content: The content for this region, typically blocks. + * - attributes: HTML attributes for the region div. + * - region: The name of the region variable as defined in the theme's + * .info.yml file. + * + * @see template_preprocess_region() + */ +#} +{% if content %} + {% set attributes = attributes.addClass(['section']) %} + +
+ {{ content }} +
+ +{% endif %}