zen-8.x-7.0-alpha15/STARTERKIT/templates/navigation/menu-local-tasks.html.twig
STARTERKIT/templates/navigation/menu-local-tasks.html.twig
{#
/**
* @file
* Theme override to display primary and secondary local tasks.
*
* Available variables:
* - primary: HTML list items representing primary tasks.
* - secondary: HTML list items representing primary tasks.
*
* Each item in these variables (primary and secondary) can be individually
* themed in menu-local-task.html.twig.
*/
#}
{% if primary %}
{%
include "@STARTERKIT/navigation/tabs/tabs.twig" with {
heading: 'Primary tabs'|t,
modifier_class: 'tabs--primary',
tabs: primary
} only
%}
{% endif %}
{% if secondary %}
{%
include "@STARTERKIT/navigation/tabs/tabs.twig" with {
heading: 'Secondary tabs'|t,
modifier_class: 'tabs--secondary',
tabs: secondary
} only
%}
{% endif %}
