2020-01-16 22:11:53 +00:00
|
|
|
{{!
|
2020-04-08 21:40:56 +00:00
|
|
|
@typedef object footerItem
|
|
|
|
@prop string id of list item element
|
|
|
|
@prop string html of list item
|
|
|
|
@prop footerItem[] items
|
2020-01-16 22:11:53 +00:00
|
|
|
|
2020-04-08 21:40:56 +00:00
|
|
|
@typedef object footerRow
|
|
|
|
@prop string className of list element
|
|
|
|
@prop string id of list element
|
|
|
|
@prop footerItem[] array-items
|
2020-01-16 22:11:53 +00:00
|
|
|
|
2020-07-14 21:40:28 +00:00
|
|
|
string|null html-user-language-attributes a string of attribute HTML
|
2020-09-30 22:17:33 +00:00
|
|
|
footerRow data-info the info row
|
|
|
|
footerRow data-places the places row
|
|
|
|
footerRow data-icons the icons row
|
2020-01-16 22:11:53 +00:00
|
|
|
}}
|
2020-05-13 22:46:23 +00:00
|
|
|
{{! `role` is unnecessary but kept to support selectors in any gadgets or user styles and
|
|
|
|
to mitigate a VoiceOver bug. }}
|
2020-07-14 21:40:28 +00:00
|
|
|
<footer id="footer" class="mw-footer" role="contentinfo" {{{html-user-language-attributes}}}>
|
2020-09-30 22:17:33 +00:00
|
|
|
{{#data-info}}{{>Footer__row}}{{/data-info}}
|
|
|
|
{{#data-places}}{{>Footer__row}}{{/data-places}}
|
|
|
|
{{#data-icons}}{{>Footer__row}}{{/data-icons}}
|
2020-01-16 22:11:53 +00:00
|
|
|
<div style="clear: both;"></div>
|
2020-05-13 22:46:23 +00:00
|
|
|
</footer>
|