mediawiki-skins-Citizen/templates/skin.mustache
alistair3149 03da361b97
feat(components): rewrite template data partials into CitizenComponent components (#846)
- Refactor existing template data-related partials into CitizenComponent components
- Re-implement user menu header as UserInfo
- Add description text for anon and temp user in UserMenu
---------

Co-authored-by: github-actions <github-actions@users.noreply.github.com>
2024-05-15 01:24:43 -04:00

34 lines
1.2 KiB
Plaintext

{{!
string|null html-site-notice the contents of a banner defined in MediaWiki:Sitenotice.
Also used by CentralNotice to inject banners into Vector.
string html-subtitle
string html-undelete-link
string html-user-message
string html-body-content--formatted
string html-categories
string html-after-content
object data-footer for footer template partial. see Footer.mustache for documentation.
}}
{{>Header}}
<div class="citizen-page-container">
<div class="citizen-sitenotice-container">
<div id="siteNotice">{{{html-site-notice}}}</div>
</div>
<main class="mw-body {{#toc-enabled}}citizen-toc-enabled{{/toc-enabled}}" id="content">
<div class="citizen-body-container">
{{>PageHeader}}
<div id="bodyContent" class="citizen-body" aria-labelledby="firstHeading">
<div id="contentSub"{{{html-user-language-attributes}}}>{{{html-subtitle}}}</div>
{{#html-undelete-link}}<div id="contentSub2">{{{.}}}</div>{{/html-undelete-link}}
{{{html-user-message}}}
{{{html-body-content--formatted}}}
</div>
{{#toc-enabled}}{{>PageSidebar}}{{/toc-enabled}}
{{>PageFooter}}
</div>
</main>
{{{html-after-content}}}
{{#data-footer}}{{>Footer}}{{/data-footer}}
</div>