Files
drupal11-ddev/web/core/modules/navigation/templates/navigation-content-top.html.twig

18 lines
362 B
Twig
Raw Normal View History

2025-10-08 11:39:17 -04:00
{#
/**
* @file
* Default theme implementation to display the navigation content_top section.
*
* Available variables:
* - items: An associative array of renderable elements to display in the
* content_top section.
*
* @ingroup themeable
*/
#}
{% if items is not empty %}
<div class="admin-toolbar__content-top">
{{ items }}
</div>
{% endif %}