Deltacms/core/layout/light.php

26 lines
973 B
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
$this->showFavicon();
$this->showVendor();
?>
2023-01-22 16:11:19 +01:00
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/common.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/mediaqueries.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/light.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>theme.css">
2023-01-22 15:05:01 +01:00
<?php $this->showStyle(); ?>
2023-01-22 16:11:19 +01:00
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css">
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>
<?php $this->showScript(); ?>
</body>
2022-11-07 16:37:05 +01:00
</html>