mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 10:38:19 +00:00
442f241641
In other language menu and language variant menu are merged into a singular menu with a toggle in page tools. This is the first step towards having better language handling in the skin.
28 lines
967 B
Plaintext
28 lines
967 B
Plaintext
{{!
|
|
string msg-citizen-drawer-toggle The label used by the drawer button.
|
|
string msg-sitesubtitle the contents of the sitesubtitle message key
|
|
}}
|
|
<div class="citizen-drawer citizen-header__item mw-checkbox-hack-container">
|
|
<input
|
|
type="checkbox"
|
|
id="citizen-drawer__checkbox"
|
|
class="mw-checkbox-hack-checkbox"
|
|
role="button"
|
|
aria-labelledby="citizen-drawer__buttonCheckbox"
|
|
aria-haspopup="true">
|
|
{{! ID needed for a11y and checkbox hack }}
|
|
<aside id="citizen-drawer__card" class="citizen-drawer__card mw-checkbox-hack-target">
|
|
<header class="citizen-drawer__header">
|
|
{{>Drawer__logo}}
|
|
<div class="citizen-drawer__siteinfo">
|
|
{{>Drawer__siteStats}}
|
|
<div class="mw-logo-wordmark">{{msg-sitetitle}}</div>
|
|
</div>
|
|
</header>
|
|
<section class="citizen-drawer__menu">
|
|
{{#data-portals-first}}{{>Menu}}{{/data-portals-first}}
|
|
{{#array-portals-rest}}{{>Menu}}{{/array-portals-rest}}
|
|
</section>
|
|
</aside>
|
|
{{>Drawer__button}}
|
|
</div> |