2022-05-05 16:49:19 +00:00
|
|
|
{{!-
|
2023-01-12 11:19:26 +00:00
|
|
|
Page titlebar - Main <H1> title for all pages, with either the indicators or language selector.
|
|
|
|
When language button is visible, indicators are placed in the BeforeContent.mustache template instead.
|
2022-05-05 16:49:19 +00:00
|
|
|
}}
|
2022-09-19 18:26:12 +00:00
|
|
|
<header class="mw-body-header vector-page-titlebar{{#is-title-blank}} vector-page-titlebar-blank{{/is-title-blank}}">
|
2022-11-21 22:16:07 +00:00
|
|
|
{{! Checkbox hack used by collapsed TOC on narrow viewports for no JS users }}
|
2022-06-08 15:03:38 +00:00
|
|
|
<label
|
|
|
|
id="vector-toc-collapsed-button"
|
2022-10-26 17:01:12 +00:00
|
|
|
class="mw-ui-button mw-ui-quiet mw-ui-icon mw-ui-icon-flush-left mw-ui-icon-element mw-ui-icon-wikimedia-listBullet mw-checkbox-hack-button"
|
2022-06-08 15:03:38 +00:00
|
|
|
for="vector-toc-collapsed-checkbox"
|
|
|
|
role="button"
|
|
|
|
aria-controls="toc-toggle-list"
|
|
|
|
data-event-name="vector.toc-toggle-list"
|
|
|
|
tabindex="0"
|
2022-06-10 21:13:30 +00:00
|
|
|
title="{{msg-vector-toc-menu-tooltip}}">
|
2022-07-21 22:21:53 +00:00
|
|
|
{{msg-vector-toc-collapsible-button-label}}
|
2022-06-08 15:03:38 +00:00
|
|
|
</label>
|
2022-11-21 22:16:07 +00:00
|
|
|
|
|
|
|
{{! TOC is moved into this dropdown from the sidebar in stickyHeader.js. }}
|
2023-01-12 21:40:14 +00:00
|
|
|
{{#data-page-titlebar-toc-dropdown}}{{>Dropdown/Open}}{{/data-page-titlebar-toc-dropdown}}
|
|
|
|
{{#data-page-titlebar-toc-pinnable-container}}
|
2022-12-09 23:32:43 +00:00
|
|
|
{{>PinnableContainer/Unpinned/Open}}
|
|
|
|
{{>PinnableContainer/Close}}
|
2023-01-12 21:40:14 +00:00
|
|
|
{{/data-page-titlebar-toc-pinnable-container}}
|
|
|
|
{{#data-page-titlebar-toc-dropdown}}{{>Dropdown/Close}}{{/data-page-titlebar-toc-dropdown}}
|
2022-07-25 20:41:39 +00:00
|
|
|
|
2023-01-12 11:19:26 +00:00
|
|
|
{{{html-title-heading}}}
|
2022-07-25 20:41:39 +00:00
|
|
|
|
|
|
|
{{#is-language-in-content-top}}
|
2023-01-12 11:19:26 +00:00
|
|
|
{{#data-lang-btn}}
|
|
|
|
{{>LanguageDropdown}}
|
|
|
|
{{/data-lang-btn}}
|
|
|
|
{{/is-language-in-content-top}}
|
2022-07-25 20:41:39 +00:00
|
|
|
|
2023-01-12 11:19:26 +00:00
|
|
|
{{^is-language-in-content-top}}
|
|
|
|
{{>Indicators}}
|
|
|
|
{{/is-language-in-content-top}}
|
2022-06-08 15:03:38 +00:00
|
|
|
</header>
|