2020-01-09 10:59:09 +00:00
|
|
|
{{!
|
2020-05-06 00:00:56 +00:00
|
|
|
See @typedef MenuDefinition
|
2020-01-09 10:59:09 +00:00
|
|
|
}}
|
2020-04-07 23:21:20 +00:00
|
|
|
<nav id="{{id}}" class="{{class}}" aria-labelledby="{{label-id}}" {{{html-tooltip}}}>
|
2020-05-06 00:00:56 +00:00
|
|
|
{{#is-dropdown}}
|
|
|
|
<input type="checkbox" class="vectorMenuCheckbox" aria-labelledby="{{label-id}}" />
|
2020-04-07 23:21:20 +00:00
|
|
|
<h3 id="{{label-id}}" {{{html-userlangattributes}}}>
|
2020-05-06 00:00:56 +00:00
|
|
|
<span>{{label}}</span>
|
|
|
|
</h3>
|
|
|
|
{{/is-dropdown}}
|
|
|
|
{{^is-dropdown}}
|
2020-04-03 20:05:22 +00:00
|
|
|
<h3 id="{{label-id}}">{{label}}</h3>
|
2020-05-06 00:00:56 +00:00
|
|
|
{{/is-dropdown}}
|
2020-04-07 23:21:20 +00:00
|
|
|
{{#is-portal}}
|
|
|
|
<div class="body">
|
|
|
|
<ul>{{{html-items}}}</ul>
|
|
|
|
{{{html-after-portal}}}
|
|
|
|
</div>
|
|
|
|
{{/is-portal}}
|
|
|
|
{{^is-portal}}
|
2020-05-06 00:00:56 +00:00
|
|
|
<ul class="menu" {{{html-userlangattributes}}}>
|
2020-04-03 20:05:22 +00:00
|
|
|
{{{html-items}}}
|
2020-01-09 10:59:09 +00:00
|
|
|
</ul>
|
2020-04-07 23:21:20 +00:00
|
|
|
{{/is-portal}}
|
2020-05-07 01:31:38 +00:00
|
|
|
</nav>
|
2020-04-07 23:21:20 +00:00
|
|
|
{{! Note: html-hook-vector-after-toolbox is deprecated. }}
|
|
|
|
{{{html-hook-vector-after-toolbox}}}
|