Mercurial > hg > isophonics-drupal-site
annotate core/modules/system/templates/menu-local-tasks.html.twig @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 4c8ae668cc8c |
children |
rev | line source |
---|---|
Chris@0 | 1 {# |
Chris@0 | 2 /** |
Chris@0 | 3 * @file |
Chris@0 | 4 * Default theme implementation to display primary and secondary local tasks. |
Chris@0 | 5 * |
Chris@0 | 6 * Available variables: |
Chris@0 | 7 * - primary: HTML list items representing primary tasks. |
Chris@0 | 8 * - secondary: HTML list items representing primary tasks. |
Chris@0 | 9 * |
Chris@0 | 10 * Each item in these variables (primary and secondary) can be individually |
Chris@0 | 11 * themed in menu-local-task.html.twig. |
Chris@0 | 12 |
Chris@0 | 13 * @ingroup themeable |
Chris@0 | 14 */ |
Chris@0 | 15 #} |
Chris@0 | 16 {% if primary %} |
Chris@0 | 17 <h2 class="visually-hidden">{{ 'Primary tabs'|t }}</h2> |
Chris@0 | 18 <ul>{{ primary }}</ul> |
Chris@0 | 19 {% endif %} |
Chris@0 | 20 {% if secondary %} |
Chris@0 | 21 <h2 class="visually-hidden">{{ 'Secondary tabs'|t }}</h2> |
Chris@0 | 22 <ul>{{ secondary }}</ul> |
Chris@0 | 23 {% endif %} |