mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-15 11:58:44 +00:00
a7c983a2ed
Bug: T255214 Change-Id: Iac66823119c7279f5e922b0e258602dd6c4ca5c4
27 lines
843 B
Plaintext
27 lines
843 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[] array-footer-rows iterable list of footer rows
|
|
}}
|
|
{{! `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}}}>
|
|
{{#array-footer-rows}}
|
|
<ul id="{{id}}" {{#className}}class="{{.}}"{{/className}}>
|
|
{{#array-items}}
|
|
<li id="{{id}}">{{{html}}}</li>
|
|
{{/array-items}}
|
|
</ul>
|
|
{{/array-footer-rows}}
|
|
<div style="clear: both;"></div>
|
|
</footer>
|