48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @package Joomla.Site
|
|
* @subpackage Templates.cassiopeia
|
|
*
|
|
* @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\HTML\HTMLHelper;
|
|
use Joomla\CMS\Language\Text;
|
|
use Joomla\CMS\Uri\Uri;
|
|
|
|
/** @var Joomla\CMS\Document\HtmlDocument $this */
|
|
|
|
$app = Factory::getApplication();
|
|
$wa = $this->getWebAssetManager();
|
|
|
|
$this->setMetaData('viewport', 'width=device-width, initial-scale=1');
|
|
$this->addHeadLink(HTMLHelper::_('image', 'favicon.ico', '', [], true, 1), 'alternate icon', 'rel', ['type' => 'image/vnd.microsoft.icon']);
|
|
|
|
$wa->usePreset('template.default');
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
|
|
<head>
|
|
<jdoc:include type="metas"/>
|
|
<jdoc:include type="styles"/>
|
|
<jdoc:include type="scripts"/>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<jdoc:include type="modules" name="header-menu" style="card"/>
|
|
</header>
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
<footer>
|
|
<jdoc:include type="modules" name="footer-menu" style="card"/>
|
|
</footer>
|
|
</body>
|
|
</html>
|