mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 01:09:20 +00:00
ae6f0d5486
* Removes js * Updates bottomDock style rules * skin mustache updated * Remove appearance feature flag - show appearance menu to all users. Bug: T367591 Change-Id: Ie2617e2fa83b6a888a7a2799cc39f048731dc60d
75 lines
2.9 KiB
Plaintext
75 lines
2.9 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.
|
|
Indicator[] array-indicators wiki-defined badges such as "good article",
|
|
"featured article". An empty array if none are defined.
|
|
string|null html-title
|
|
bool is-article
|
|
string msg-tagline
|
|
string html-subtitle
|
|
string html-undelete-link
|
|
string html-newtalk
|
|
string msg-vector-jumptonavigation
|
|
string msg-vector-jumptosearch
|
|
string msg-vector-jumptocontent
|
|
string html-body-content
|
|
string html-categories
|
|
string html-after-content
|
|
LogoOptions data-logos
|
|
object data-portlets
|
|
MenuDefinition data-portlets.data-personal
|
|
MenuDefinition data-portlets.data-namespaces
|
|
MenuDefinition data-portlets.data-variants
|
|
MenuDefinition data-portlets.data-views
|
|
MenuDefinition data-portlets.data-actions
|
|
object data-search-box. See SearchBox.mustache for documentation.
|
|
string msg-vector-action-toggle-sidebar The label used by the sidebar button.
|
|
string msg-vector-main-menu-tooltip The title attribute for the main menu icon.
|
|
object data-main-menu. See MainMenu.mustache for documentation.
|
|
object data-footer for footer template partial. see Footer.mustache for documentation.
|
|
}}
|
|
<a class="mw-jump-link" href="#bodyContent">{{msg-vector-jumptocontent}}</a>
|
|
<div class="vector-header-container">
|
|
{{>Header}}
|
|
</div>
|
|
<div class="mw-page-container">
|
|
<div class="mw-page-container-inner">
|
|
<div class="vector-sitenotice-container">
|
|
{{{html-site-notice}}}
|
|
</div>
|
|
{{>ColumnStart}}
|
|
<div class="mw-content-container">
|
|
{{! `role` is unnecessary but kept to support selectors in any gadgets or user styles. }}
|
|
<main id="content" class="mw-body">
|
|
{{>PageTitlebar}}
|
|
{{>PageToolbar}}
|
|
{{>ColumnEnd}}
|
|
<div id="bodyContent" class="vector-body" aria-labelledby="firstHeading" data-mw-ve-target-container>
|
|
{{>BeforeContent}}
|
|
{{! the #contentSub element is currently used by editors, do not hide or remove it
|
|
until https://phabricator.wikimedia.org/T316830 has been addressed}}
|
|
<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}}}
|
|
{{{html-categories}}}
|
|
{{#is-language-in-content-bottom}}
|
|
{{#data-lang-dropdown}}{{>LanguageDropdown}}{{/data-lang-dropdown}}
|
|
{{/is-language-in-content-bottom}}
|
|
</div>
|
|
</main>
|
|
{{{html-after-content}}}
|
|
</div>
|
|
<div class="mw-footer-container">
|
|
{{#data-footer}}{{>Footer}}{{/data-footer}}
|
|
</div>
|
|
</div> {{! END mw-page-container-inner }}
|
|
</div> {{! END mw-page-container }}
|
|
{{#data-vector-sticky-header}}
|
|
<div class="vector-header-container vector-sticky-header-container">
|
|
{{>StickyHeader}}
|
|
</div>
|
|
{{/data-vector-sticky-header}}
|
|
<div class="vector-settings" id="p-dock-bottom">
|
|
<ul></ul>
|
|
</div> |