Deltacms/core/layout/blank.php

24 lines
939 B
PHP
Raw Normal View History

2022-01-31 09:10:49 +01:00
<!DOCTYPE html>
2022-03-21 08:32:27 +01:00
<html prefix="og: http://ogp.me/ns#" 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
$this->showMetaTitle();
2022-12-29 08:48:31 +01:00
$this->showMetaPropertyFacebook();
2022-09-02 08:44:18 +02:00
?>
<?php
$this->showFavicon();
$this->showVendor();
$this->showStyle();
?>
2022-01-31 09:10:49 +01:00
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/common.css">
2023-01-11 20:19:00 +01:00
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/mediaqueries.css">
2022-01-31 09:10:49 +01:00
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/blank.css">
2022-11-08 11:26:00 +01:00
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>theme.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css"></head>
2022-01-31 09:10:49 +01:00
<body>
<?php $this->showContent(); ?>
<?php $this->showScript(); ?>
</body>
</html>