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-04-08 21:40:56 +00:00
|
|
|
footerRow[] array-footer-rows iterable list of footer rows
|
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-01-16 22:11:53 +00:00
|
|
|
{{#array-footer-rows}}
|
2020-04-23 22:28:41 +00:00
|
|
|
<ul id="{{id}}" {{#className}}class="{{.}}"{{/className}}>
|
2020-01-16 22:11:53 +00:00
|
|
|
{{#array-items}}
|
|
|
|
<li id="{{id}}">{{{html}}}</li>
|
|
|
|
{{/array-items}}
|
|
|
|
</ul>
|
|
|
|
{{/array-footer-rows}}
|
|
|
|
<div style="clear: both;"></div>
|
2020-05-13 22:46:23 +00:00
|
|
|
</footer>
|