ZwiiCMS/core/layout/light.php

25 lines
1.1 KiB
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
<!DOCTYPE html>
2021-06-14 18:54:31 +02:00
<html prefix="og: http://ogp.me/ns#" lang="<?php echo self::$i18n;?>">
2018-04-02 08:29:19 +02:00
<head>
2020-11-01 07:56:04 +01:00
<meta charset="UTF-8">
2018-04-02 08:29:19 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-06-14 18:37:45 +02:00
<?php $this->showMetaTitle(); ?>
<?php $this->showMetaDescription(); ?>
<?php $this->showMetaType(); ?>
<?php $this->showMetaImage(); ?>
<?php $this->showFavicon(); ?>
<?php $this->showVendor(); ?>
<?php $this->showStyle(); ?>
2018-04-02 08:29:19 +02: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/light.css">
2020-03-23 16:16:45 +01:00
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>theme.css?<?php echo md5_file(self::DATA_DIR.'theme.css'); ?>">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css?<?php echo md5_file(self::DATA_DIR.'custom.css'); ?>">
2018-04-02 08:29:19 +02:00
</head>
<body>
2021-06-14 18:37:45 +02:00
<?php $this->showNotification(); ?>
2020-11-04 09:15:08 +01:00
<div id="site" class="container light">
2021-06-14 18:37:45 +02:00
<section><?php $this->showContent(); ?></section>
2018-04-02 08:29:19 +02:00
</div>
2021-06-14 18:37:45 +02:00
<?php $this->showScript(); ?>
2018-04-02 08:29:19 +02:00
</body>
</html>