4d2fcaa2be372ba1df2b6415cddead15a1049dff
[yaffs-website] / menu / menu--account.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation to display a menu.
5  *
6  * Available variables:
7  * - menu_name: The machine name of the menu.
8  * - items: A nested list of menu items. Each menu item contains:
9  *   - attributes: HTML attributes for the menu item.
10  *   - below: The menu item child items.
11  *   - title: The menu link title.
12  *   - url: The menu link url, instance of \Drupal\Core\Url
13  *   - localized_options: Menu link localized options.
14  *
15  * @ingroup templates
16  */
17 #}
18 {% extends "menu.html.twig" %}
19 {%
20   set classes = [
21     'menu',
22     'menu--' ~ menu_name|clean_class,
23     'nav',
24     'navbar-nav',
25     'navbar-right',
26   ]
27 %}