mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 18:40:05 +00:00
24 lines
715 B
Plaintext
24 lines
715 B
Plaintext
|
{{!
|
||
|
LogoDefinition logo
|
||
|
string link-mainpage link to the main page
|
||
|
TODO: Maybe merge with Drawer__logo?
|
||
|
}}
|
||
|
{{#data-logos}}
|
||
|
<div class="citizen-header__logo">
|
||
|
<a href="{{link-mainpage}}" class="mw-logo citizen-header__button">
|
||
|
{{! alt is provided for valid HTML but given aria-hidden not needed. }}
|
||
|
<img class="mw-logo-icon" src="{{!
|
||
|
Pick an icon based on this order: Icon > SVG > 1x
|
||
|
Need a better way to indent the syntax below
|
||
|
}}{{#icon}}{{.}}{{/icon}}{{!
|
||
|
}}{{^icon}}{{!
|
||
|
}}{{#svg}}{{.}}{{/svg}}{{!
|
||
|
}}{{^svg}}{{!
|
||
|
}}{{#1x}}{{.}}{{/1x}}{{!
|
||
|
}}{{/svg}}{{!
|
||
|
}}{{/icon}}"{{!
|
||
|
}}alt="" aria-hidden="true" height="32" width="32">
|
||
|
</a>
|
||
|
</div>
|
||
|
{{/data-logos}}
|