mediawiki-skins-Citizen/includes/templates/Logo.mustache

22 lines
632 B
Plaintext
Raw Normal View History

2020-06-04 19:04:03 +00:00
{{!
LogoDefinition logo
string html-mainpage-attributes link to the main page
string msg-sitesubtitle the contents of the sitesubtitle message key
2020-06-04 19:04:03 +00:00
}}
{{#data-logos}}
<a {{{html-mainpage-attributes}}} class="mw-logo">
{{#icon}}
{{! alt is provided for valid HTML but given aria-hidden not needed. }}
<img class="mw-logo-icon" src="{{.}}" alt=""
aria-hidden="true" height="50" width="50">
{{/icon}}
<span class="mw-logo-container">
{{>Wordmark}}
{{#tagline}}
<img class="mw-logo-tagline"
alt="{{msg-sitesubtitle}}"
src="{{src}}" width="{{width}}" height="{{height}}">
{{/tagline}}
</span>
</a>
{{/data-logos}}