2020-03-31 17:51:48 +00:00
|
|
|
{{!
|
2020-04-08 21:40:56 +00:00
|
|
|
string html-headelement a string of attribute HTML that begins with `<html>` and ends with
|
|
|
|
`</head>` and contains `meta` tags and ResourceLoader internals.
|
|
|
|
string|null html-sitenotice the contents of a banner defined in MediaWiki:Sitenotice.
|
|
|
|
Also used by CentralNotice to inject banners into Vector.
|
|
|
|
string html-indicators raw HTML containing wiki-defined badges such as "good article",
|
|
|
|
"featured article". An empty string if none are defined.
|
|
|
|
string page-langcode the content language of the article. Assumed to be escaped HTML.
|
|
|
|
string html-title
|
|
|
|
string html-prebodyhtml
|
|
|
|
bool page-isarticle
|
|
|
|
string msg-tagline
|
|
|
|
string html-subtitle
|
|
|
|
string html-undelete
|
|
|
|
string html-newtalk
|
|
|
|
string msg-jumptonavigation
|
|
|
|
string msg-jumptosearch
|
|
|
|
string html-bodycontent
|
|
|
|
string html-printfooter
|
|
|
|
string html-catlinks
|
|
|
|
string html-debuglog
|
|
|
|
string html-dataAfterContent
|
|
|
|
string html-navigation-heading heading for entire navigation that is
|
|
|
|
usually hidden to screen readers
|
2020-05-05 23:26:35 +00:00
|
|
|
MenuDefinition data-personal-menu
|
2020-05-06 17:15:50 +00:00
|
|
|
MenuDefinition data-namespace-tabs
|
2020-05-06 00:00:56 +00:00
|
|
|
MenuDefinition data-variants
|
2020-05-06 17:15:50 +00:00
|
|
|
MenuDefinition data-page-actions
|
2020-05-06 00:00:56 +00:00
|
|
|
MenuDefinition data-page-actions-more
|
2020-04-08 21:40:56 +00:00
|
|
|
object data-search-box. See SearchBox.mustache for documentation.
|
|
|
|
object data-sidebar. See Sidebar.mustache for documentation.
|
|
|
|
object data-footer for footer template partial. see Footer.mustache for documentation.
|
|
|
|
string html-printtail HTML to render at the end of the page contained necessary script tags for
|
|
|
|
ResourceLoader terminated with `</body></html>`.
|
2020-03-31 17:51:48 +00:00
|
|
|
}}
|
|
|
|
|
|
|
|
{{{html-headelement}}}
|
|
|
|
<div id="mw-page-base" class="noprint"></div>
|
|
|
|
<div id="mw-head-base" class="noprint"></div>
|
2020-05-07 01:31:38 +00:00
|
|
|
<main id="content" class="mw-body" role="main">
|
2020-03-31 17:51:48 +00:00
|
|
|
<a id="top"></a>
|
2020-04-08 21:40:56 +00:00
|
|
|
{{#html-sitenotice}}
|
|
|
|
<div id="siteNotice" class="mw-body-content">{{{html-sitenotice}}}</div>
|
|
|
|
{{/html-sitenotice}}
|
2020-04-02 04:02:17 +00:00
|
|
|
{{{html-indicators}}}
|
2020-04-08 02:01:32 +00:00
|
|
|
<h1 id="firstHeading" class="firstHeading" lang="{{page-langcode}}">{{{html-title}}}</h1>
|
2020-03-31 17:51:48 +00:00
|
|
|
{{{html-prebodyhtml}}}
|
|
|
|
<div id="bodyContent" class="mw-body-content">
|
|
|
|
{{#page-isarticle}}<div id="siteSub" class="noprint">{{msg-tagline}}</div>{{/page-isarticle}}
|
|
|
|
<div id="contentSub"{{{html-userlangattributes}}}>{{{html-subtitle}}}</div>
|
|
|
|
{{#html-undelete}}<div id="contentSub2">{{{html-undelete}}}</div>{{/html-undelete}}
|
|
|
|
{{#html-newtalk}}<div class="usermessage">{{{html-newtalk}}}</div>{{/html-newtalk}}
|
|
|
|
{{!
|
2020-04-08 21:40:56 +00:00
|
|
|
Keep this empty `div` for compatibility with gadgets and user scripts
|
|
|
|
using this place to insert extra elements before.
|
2020-03-31 17:51:48 +00:00
|
|
|
}}
|
|
|
|
<div id="jump-to-nav"></div>
|
|
|
|
<a class="mw-jump-link" href="#mw-head">{{msg-jumptonavigation}}</a>
|
|
|
|
<a class="mw-jump-link" href="#p-search">{{msg-jumptosearch}}</a>
|
|
|
|
{{{html-bodycontent}}}
|
|
|
|
{{#html-printfooter}}
|
|
|
|
<div class="printfooter">{{{html-printfooter}}}</div>
|
|
|
|
{{/html-printfooter}}
|
|
|
|
{{{html-catlinks}}}
|
|
|
|
<div class="visualClear"></div>
|
|
|
|
{{{html-debuglog}}}
|
|
|
|
</div>
|
2020-05-07 01:31:38 +00:00
|
|
|
</main>
|
2020-03-31 17:51:48 +00:00
|
|
|
{{{html-dataAfterContent}}}
|
|
|
|
<div id="mw-navigation">
|
2020-04-08 21:40:56 +00:00
|
|
|
<h2>{{{html-navigation-heading}}}</h2>
|
|
|
|
<div id="mw-head">
|
2020-05-05 23:26:35 +00:00
|
|
|
{{#data-personal-menu}}{{>Menu}}{{/data-personal-menu}}
|
2020-04-08 21:40:56 +00:00
|
|
|
<div id="left-navigation">
|
2020-05-06 17:15:50 +00:00
|
|
|
{{#data-namespace-tabs}}{{>Menu}}{{/data-namespace-tabs}}
|
2020-05-06 00:00:56 +00:00
|
|
|
{{#data-variants}}{{>Menu}}{{/data-variants}}
|
2020-04-08 21:40:56 +00:00
|
|
|
</div>
|
|
|
|
<div id="right-navigation">
|
2020-05-06 17:15:50 +00:00
|
|
|
{{#data-page-actions}}{{>Menu}}{{/data-page-actions}}
|
2020-05-06 00:00:56 +00:00
|
|
|
{{#data-page-actions-more}}{{>Menu}}{{/data-page-actions-more}}
|
2020-04-08 21:40:56 +00:00
|
|
|
{{#data-search-box}}{{>SearchBox}}{{/data-search-box}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{#data-sidebar}}{{>Sidebar}}{{/data-sidebar}}
|
2020-03-31 17:51:48 +00:00
|
|
|
</div>
|
2020-04-08 21:40:56 +00:00
|
|
|
{{#data-footer}}{{>Footer}}{{/data-footer}}
|
2020-03-31 17:51:48 +00:00
|
|
|
{{{html-printtail}}}
|