mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
e12fe1dbb0
Bug: T291895 Depends-On: Ie86a5b59fbf93a400796a4cac3724207830092b5 Change-Id: I194a11316e8ac68319f41c6a79b2c9cd081a4b66
27 lines
832 B
Plaintext
27 lines
832 B
Plaintext
{{!
|
|
LogoDefinition logo
|
|
string link-mainpage link to the main page (from SkinMustache in core)
|
|
string msg-sitesubtitle the contents of the sitesubtitle message key
|
|
}}
|
|
<a href="{{link-mainpage}}" 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}}
|
|
<img class="mw-logo-wordmark" alt="{{msg-sitetitle}}"
|
|
src="{{src}}" style="{{style}}">
|
|
{{/wordmark}}
|
|
{{^wordmark}}
|
|
<strong class="mw-logo-wordmark">{{msg-sitetitle}}</strong>
|
|
{{/wordmark}}
|
|
{{#tagline}}
|
|
<img class="mw-logo-tagline"
|
|
alt="{{msg-sitesubtitle}}"
|
|
src="{{src}}" width="{{width}}" height="{{height}}" style="{{style}}">
|
|
{{/tagline}}
|
|
</span>
|
|
</a>
|