mediawiki-skins-Citizen/templates/Drawer__logo.mustache
Maxim Martynov 4aa6626438
feat: defer loading menu wiki logo (#507)
* Add lazy load attribute to menu logo

* Async decode is not necessary

Co-authored-by: alistair3149 <alistair3149@users.noreply.github.com>
2022-08-30 19:23:09 -04:00

22 lines
681 B
Plaintext

{{!
LogoDefinition logo
string link-mainpage link to the main page
string msg-sitesubtitle the contents of the sitesubtitle message key
}}
{{#data-logos}}
<a href="{{link-mainpage}}" class="mw-logo citizen-drawer__logo">
{{! 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="80" width="80" loading="lazy">
</a>
{{/data-logos}}