Deltacms/core/layout/light.php

34 lines
1.0 KiB
PHP
Raw Normal View History

2022-01-31 09:10:49 +01:00
<!DOCTYPE html>
<html lang="<?php echo $this->getData(['config', 'i18n', 'langAdmin']);?>">
2022-01-31 09:10:49 +01:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-09-02 08:44:18 +02:00
<?php
2023-01-22 15:05:01 +01:00
$this->showMetaTitle();
2022-09-02 08:44:18 +02:00
?>
2023-02-07 16:53:49 +01:00
<base href="<?php echo helper::baseUrl(true); ?>">
<link rel="stylesheet" href="core/vendor/normalize/normalize.min.css">
2023-02-07 16:53:49 +01:00
<link rel="stylesheet" href="core/layout/common.css">
<link rel="stylesheet" href="core/layout/mediaqueries.css">
<link rel="stylesheet" href="core/layout/light.css">
<link rel="stylesheet" href="<?php echo self::DATA_DIR; ?>theme.css">
2023-02-06 17:43:22 +01:00
<?php $this->showStyle();
2023-02-07 16:53:49 +01:00
$this->showSharedVariables();
2023-02-06 17:43:22 +01:00
$this->sortVendor();
$this->showVendor('css'); ?>
2023-02-07 16:53:49 +01:00
<link rel="stylesheet" href="<?php echo self::DATA_DIR; ?>custom.css">
2023-02-02 22:13:39 +01:00
<?php
$this->showFavicon();
2023-02-06 17:43:22 +01:00
$this->showVendor('jshead');
2023-02-02 22:13:39 +01:00
?>
2022-01-31 09:10:49 +01:00
</head>
<body>
<?php $this->showNotification(); ?>
<div id="site" class="container light">
<section><?php $this->showContent(); ?></section>
</div>
2023-02-06 17:43:22 +01:00
<?php $this->showVendor('jsbody'); ?>
<?php $this->showScript(); ?>
2022-01-31 09:10:49 +01:00
</body>
2022-11-07 16:37:05 +01:00
</html>