mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-05 14:22:56 +00:00
29 lines
840 B
Plaintext
29 lines
840 B
Plaintext
|
{{!
|
||
|
LogoDefinition logo
|
||
|
string main-page-href link to the main page
|
||
|
string msg-sitesubtitle the contents of the sitesubtitle message key
|
||
|
}}
|
||
|
{{#data-logos}}
|
||
|
<a href="{{main-page-href}}" 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}}" width="{{width}}" height="{{height}}">
|
||
|
{{/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}}">
|
||
|
{{/tagline}}
|
||
|
</span>
|
||
|
</a>
|
||
|
{{/data-logos}}
|