14 lines
327 B
Twig
14 lines
327 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Default theme implementation for a generic views UI container/wrapper.
|
|
*
|
|
* Available variables:
|
|
* - attributes: HTML attributes to apply to the container element.
|
|
* - children: The remaining elements such as dropbuttons and tabs.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
#}
|
|
<div{{ attributes }}>{{ children }}</div>
|