Skip to content
Snippets Groups Projects

pachu-3395607: After placing Tabs, for view-Edit-Delete-Revision, Is not visible anywhere.

Merged Alok Singh requested to merge issue/pachu-3395607:pachu-3395594 into 1.0.x
Files
2
+ 26
0
{#
/**
* @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()
*/
#}
{%
set classes = [
'region',
'region-' ~ region|clean_class,
'container',
]
%}
{% if content %}
<div{{ attributes.addClass(classes) }}>
{{ content }}
</div>
{% endif %}
Loading