|
|
|
@ -36,24 +36,7 @@ class TimelessTemplate extends BaseTemplate {
|
|
|
|
|
|
|
|
|
|
$html .= Html::rawElement( 'div', [ 'id' => 'mw-content-container', 'class' => 'ts-container' ],
|
|
|
|
|
Html::rawElement( 'div', [ 'id' => 'mw-content-block', 'class' => 'ts-inner' ],
|
|
|
|
|
Html::rawElement( 'div', [ 'id' => 'mw-site-navigation' ],
|
|
|
|
|
$this->getLogo( 'p-logo', 'image' ) .
|
|
|
|
|
$this->getMainNavigation() .
|
|
|
|
|
$this->getSidebarChunk(
|
|
|
|
|
'site-tools',
|
|
|
|
|
'timeless-sitetools',
|
|
|
|
|
$this->getPortlet(
|
|
|
|
|
'tb',
|
|
|
|
|
$this->pileOfTools['general'],
|
|
|
|
|
'timeless-sitetools'
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
) .
|
|
|
|
|
Html::rawElement( 'div', [ 'id' => 'mw-related-navigation' ],
|
|
|
|
|
$this->getPageToolSidebar() .
|
|
|
|
|
$this->getInterlanguageLinks() .
|
|
|
|
|
$this->getCategories()
|
|
|
|
|
) .
|
|
|
|
|
Html::rawElement( 'div', [ 'id' => 'mw-content-wrapper' ],
|
|
|
|
|
Html::rawElement( 'div', [ 'id' => 'mw-content' ],
|
|
|
|
|
Html::rawElement( 'div', [ 'id' => 'content', 'class' => 'mw-body', 'role' => 'main' ],
|
|
|
|
|
$this->getSiteNotices() .
|
|
|
|
@ -91,8 +74,27 @@ class TimelessTemplate extends BaseTemplate {
|
|
|
|
|
$this->getClear()
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
) .
|
|
|
|
|
$this->getAfterContent() .
|
|
|
|
|
Html::rawElement( 'div', [ 'id' => 'mw-site-navigation' ],
|
|
|
|
|
$this->getLogo( 'p-logo', 'image' ) .
|
|
|
|
|
$this->getMainNavigation() .
|
|
|
|
|
$this->getSidebarChunk(
|
|
|
|
|
'site-tools',
|
|
|
|
|
'timeless-sitetools',
|
|
|
|
|
$this->getPortlet(
|
|
|
|
|
'tb',
|
|
|
|
|
$this->pileOfTools['general'],
|
|
|
|
|
'timeless-sitetools'
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
) .
|
|
|
|
|
Html::rawElement( 'div', [ 'id' => 'mw-related-navigation' ],
|
|
|
|
|
$this->getPageToolSidebar() .
|
|
|
|
|
$this->getInterlanguageLinks() .
|
|
|
|
|
$this->getCategories()
|
|
|
|
|
) .
|
|
|
|
|
$this->getClear()
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|