mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
17968826fa
Follow up to I4c2e115451c0a76c742734730712814c1f1d838d. This will allow us to load the templates directly into skin.mustache via {{>PartialName}} Templates partials can only be resolved relative to the folder given to the TemplateParser. Change-Id: I5783d49c25d2efcf4781dd912500bf8b413b8cb6
19 lines
545 B
Plaintext
19 lines
545 B
Plaintext
<nav class="page-actions-menu">
|
|
<ul id="page-actions" class="page-actions-menu__list">
|
|
{{#toolbar}}
|
|
<li id="{{name}}" class="page-actions-menu__list-item">
|
|
{{#components}}
|
|
<a id="{{id}}" href="{{href}}" class="{{class}}"
|
|
data-mw="interface"
|
|
data-event-name="{{data-event-name}}" role="button" title="{{title}}">{{text}}</a>
|
|
{{/components}}
|
|
</li>
|
|
{{/toolbar}}
|
|
{{#overflowMenu}}
|
|
<li id="{{item-id}}" class="page-actions-menu__list-item">
|
|
{{> ToggleList/ToggleList}}
|
|
</li>
|
|
{{/overflowMenu}}
|
|
</ul>
|
|
</nav>
|