mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 02:41:54 +00:00
a3e524192d
- Reduce MinervaTemplate.getPageActions() visibility from public to protected. No one seems to use it. - Use camelCase instead of lowercase for the pageActionMenu.mustache template's pageActions variable. writingwithcaseindifference is difficult to read and the templates seem to support casing. Change-Id: I6d283c7b97eeef6902cb010904748bd8c72b660c
12 lines
315 B
Plaintext
12 lines
315 B
Plaintext
<nav class="page-actions-menu">
|
|
<ul id="page-actions" class="page-actions-menu__list">
|
|
{{#pageActions}}
|
|
<li id="{{item-id}}" class="page-actions-menu__list-item">
|
|
<a id="{{id}}" href="{{href}}" class="{{class}}" role="button" title="{{title}}">
|
|
{{text}}
|
|
</a>
|
|
</li>
|
|
{{/pageActions}}
|
|
</ul>
|
|
</nav>
|