mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
b7bf9a88a3
Require MW 1.36 Bug: T277218 Depends-On: I52f752aa782b09a51e2165300cc75d0e47fa3351 Change-Id: Ia1eec412111e8f6af3b45affdc186d9eafd4262c
24 lines
814 B
Plaintext
24 lines
814 B
Plaintext
{{!
|
|
@typedef object footerItem
|
|
@prop string id of list item element
|
|
@prop string html of list item
|
|
@prop footerItem[] items
|
|
|
|
@typedef object footerRow
|
|
@prop string className of list element
|
|
@prop string id of list element
|
|
@prop footerItem[] array-items
|
|
|
|
string|null html-user-language-attributes a string of attribute HTML
|
|
footerRow data-info the info row
|
|
footerRow data-places the places row
|
|
footerRow data-icons the icons row
|
|
}}
|
|
{{! `role` is unnecessary but kept to support selectors in any gadgets or user styles and
|
|
to mitigate a VoiceOver bug. }}
|
|
<footer id="footer" class="mw-footer" role="contentinfo" {{{html-user-language-attributes}}}>
|
|
{{#data-info}}{{>Footer__row}}{{/data-info}}
|
|
{{#data-places}}{{>Footer__row}}{{/data-places}}
|
|
{{#data-icons}}{{>Footer__row}}{{/data-icons}}
|
|
</footer>
|