menu-local-tasks.html.twig in Drupal 9
Same filename in this branch
- 9 core/themes/claro/templates/menu-local-tasks.html.twig
- 9 core/themes/seven/templates/menu-local-tasks.html.twig
- 9 core/modules/system/templates/menu-local-tasks.html.twig
- 9 core/themes/starterkit_theme/templates/navigation/menu-local-tasks.html.twig
- 9 core/themes/classy/templates/navigation/menu-local-tasks.html.twig
- 9 core/themes/olivero/templates/navigation/menu-local-tasks.html.twig
- 9 core/themes/stable9/templates/navigation/menu-local-tasks.html.twig
- 9 core/themes/stable/templates/navigation/menu-local-tasks.html.twig
- 9 core/themes/bartik/templates/classy/navigation/menu-local-tasks.html.twig
- 9 core/profiles/demo_umami/themes/umami/templates/components/navigation/menu-local-tasks.html.twig
Same filename and directory in other branches
Seven theme implementation to display primary and secondary local tasks.
Available variables:
- primary: HTML list items representing primary tasks.
- secondary: HTML list items representing secondary tasks.
Each item in these variables (primary and secondary) can be individually themed in menu-local-task.html.twig.
1 theme call to menu-local-tasks.html.twig
- LocalTasksBlock::build in core/
lib/ Drupal/ Core/ Menu/ Plugin/ Block/ LocalTasksBlock.php - Builds and returns the renderable array for this block plugin.
File
core/themes/seven/templates/menu-local-tasks.html.twigView source
- {#
- /**
- * @file
- * Seven theme implementation to display primary and secondary local tasks.
- *
- * Available variables:
- * - primary: HTML list items representing primary tasks.
- * - secondary: HTML list items representing secondary tasks.
- *
- * Each item in these variables (primary and secondary) can be individually
- * themed in menu-local-task.html.twig.
- *
- * @ingroup themeable
- */
- #}
- {% if primary %}
- <h2 id="primary-tabs-title" class="visually-hidden">{{ 'Primary tabs'|t }}</h2>
- <nav role="navigation" class="is-horizontal is-collapsible" aria-labelledby="primary-tabs-title" data-drupal-nav-tabs>
- <button class="reset-appearance tabs__tab tabs__trigger" aria-label="{{ 'Primary tabs display toggle'|t }}" data-drupal-nav-tabs-trigger>•••</button>
- <ul class="tabs primary clearfix" data-drupal-nav-tabs-target>{{ primary }}</ul>
- </nav>
- {% endif %}
- {% if secondary %}
- <h2 id="secondary-tabs-title" class="visually-hidden">{{ 'Secondary tabs'|t }}</h2>
- <nav role="navigation" class="is-horizontal" aria-labelledby="secondary-tabs-title" data-drupal-nav-tabs>
- <ul class="tabs secondary clearfix">{{ secondary }}</ul>
- </nav>
- {% endif %}