2020-01-16 22:11:53 +00:00
|
|
|
{{!
|
|
|
|
@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 html-hook-vector-before-footer output of VectorBeforeFooter hook
|
2020-03-11 03:30:30 +00:00
|
|
|
string|null html-userlangattributes a string of attribute HTML
|
2020-01-16 22:11:53 +00:00
|
|
|
footerRow[] array-footer-rows iterable list of footer rows
|
|
|
|
}}
|
|
|
|
{{{html-hook-vector-before-footer}}}
|
|
|
|
<div id="footer" role="contentinfo" {{{html-userlangattributes}}}>
|
|
|
|
{{#array-footer-rows}}
|
|
|
|
<ul id="{{id}}" class="{{className}}">
|
|
|
|
{{#array-items}}
|
|
|
|
<li id="{{id}}">{{{html}}}</li>
|
|
|
|
{{/array-items}}
|
|
|
|
</ul>
|
|
|
|
{{/array-footer-rows}}
|
|
|
|
<div style="clear: both;"></div>
|
|
|
|
</div>
|