v1/web/themes/contrib/gin/templates/navigation/toolbar--gin.html.twig

67 lines
2.7 KiB
Twig

{#
/**
* @file
* Theme override for the administrative toolbar.
*
* Available variables:
* - attributes: HTML attributes for the wrapper.
* - toolbar_attributes: HTML attributes to apply to the toolbar.
* - toolbar_heading: The heading or label for the toolbar.
* - tabs: List of tabs for the toolbar.
* - attributes: HTML attributes for the tab container.
* - link: Link or button for the menu tab.
* - trays: Toolbar tray list, each associated with a tab. Each tray in trays
* contains:
* - attributes: HTML attributes to apply to the tray.
* - label: The tray's label.
* - links: The tray menu links.
* - remainder: Any non-tray, non-tab elements left to be rendered.
*
* @see template_preprocess_toolbar()
*/
#}
{% set gin_toolbar_id = toolbar_variant != 'classic' ? 'gin-toolbar-bar' : 'toolbar-bar' %}
<div{{ attributes.addClass('toolbar') }}>
<nav{{ toolbar_attributes.addClass('toolbar-bar', 'clearfix').setAttribute('id', gin_toolbar_id) }}>
<h2 class="visually-hidden">{{ toolbar_heading }}</h2>
{% for key, tab in tabs %}
{% set tray = trays[key] %}
{% set user_menu = tray.links['user_links'] ? 'user-menu' : false %}
{% if
toolbar_variant != 'classic' and (
tab.attributes.id == 'admin-toolbar-search-tab' or
tab.attributes.id == 'responsive-preview-toolbar-tab'
)
%}
{# render nothing #}
{% else %}
{% if tab.attributes.id == 'toolbar-tab-tour' and toolbar_variant != 'classic' %}
<div{{ tab.attributes.addClass('toolbar-tab', user_menu, tab.link['#id'] ? 'toolbar-tab--' ~ tab.link['#id'] : null).removeAttribute('id') }}>
{% else %}
<div{{ tab.attributes.addClass('toolbar-tab', user_menu, tab.link['#id'] ? 'toolbar-tab--' ~ tab.link['#id'] : null) }}>
{% endif %}
{% if tab.link['#id'] == 'toolbar-item-administration' %}
<a class="toolbar-menu__logo" href="/admin/content" aria-label="{{ 'Toolbar Menu Logo'|t }}">
<span class="visually-hidden">{{ 'Toolbar Menu Logo'|t }}</span>
</a>
{{ tab.link }}
{% else %}
{{ tab.link }}
{% endif %}
<div{{ tray.attributes }}>
{% if tray.label %}
<nav class="toolbar-lining clearfix" role="navigation" aria-label="{{ tray.label }}">
<h3 class="toolbar-tray-name visually-hidden">{{ tray.label }}</h3>
{% else %}
<nav class="toolbar-lining clearfix" role="navigation">
{% endif %}
{{ tray.links }}
</nav>
</div>
</div>
{% endif %}
{% endfor %}
</nav>
{{ remainder }}
</div>