mediawiki-skins-Citizen/templates/Footer.mustache

40 lines
1.3 KiB
Plaintext
Raw Normal View History

{{!
@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
footerRow[] array-footer-rows iterable list of footer rows
footerRow[] array-footer-icons iterable list of footer icons
string msg-sitetitle
string msg-citizen-footer-desc
string msg-citizen-footer-tagline
}}
<footer class="mw-footer" {{{html-user-language-attributes}}}>
{{#html-lastmodified}}
<div class="last-modified-bar">
<div class="last-modified-bar-content">
<div class="last-modified-bar-icon"></div>
<div class="last-modified-bar-text">{{{.}}}</div>
</div>
</div>
{{/html-lastmodified}}
<div id="footer-content">
<h2 id="footer-sitetitle" class="mw-wiki-title">{{>Wordmark}}</h2>
2020-06-03 05:07:40 +00:00
<p id="footer-desc">{{{msg-citizen-footer-desc}}}</p>
2021-06-20 06:03:43 +00:00
{{#data-citizen-places}}{{>Footer__row}}{{/data-citizen-places}}
{{#data-citizen-info}}{{>Footer__row}}{{/data-citizen-info}}
</div>
<div id="footer-bottom">
<div id="footer-bottom-content">
2020-06-04 05:13:04 +00:00
<div id="footer-tagline">{{{msg-citizen-footer-tagline}}}</div>
2021-06-20 06:03:43 +00:00
{{#data-citizen-icons}}{{>Footer__row}}{{/data-citizen-icons}}
</div>
</div>
</footer>