You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
474 B
PHP
24 lines
474 B
PHP
<?php
|
|
/**
|
|
* SkinTemplate class for the Timeless skin
|
|
*
|
|
* @ingroup Skins
|
|
*/
|
|
class SkinTimeless extends SkinTemplate {
|
|
/** @var string */
|
|
public $stylename = 'Timeless';
|
|
|
|
/** @var string */
|
|
public $template = 'TimelessTemplate';
|
|
|
|
/**
|
|
* @param OutputPage $out
|
|
*/
|
|
public function initPage( OutputPage $out ) {
|
|
parent::initPage( $out );
|
|
|
|
// Basic IE support without flexbox
|
|
$out->addStyle( $this->stylename . '/resources/IE9fixes.css', 'screen', 'IE' );
|
|
}
|
|
}
|