Deltacms/core/layout/blank.php

29 lines
762 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
$this->showMetaTitle();
?>
2023-02-03 17:36:07 +01:00
<link rel="stylesheet" href="core/layout/common.css">
<link rel="stylesheet" href="core/layout/mediaqueries.css">
<link rel="stylesheet" href="core/layout/blank.css">
<link rel="stylesheet" href="<?php echo self::DATA_DIR; ?>theme.css">
<?php $this->showStyle();
$this->showVendorCss();?>
2023-02-03 17:36:07 +01:00
<link rel="stylesheet" href="<?php echo self::DATA_DIR; ?>custom.css">
2023-02-02 22:12:48 +01:00
<?php
$this->showFavicon();
$this->showVendor();
?>
</head>
2022-01-31 09:10:49 +01:00
<body>
2023-02-03 12:48:56 +01:00
<?php
$this->showContent();
$this->showVendorJsBody();
$this->showScript();
?>
2022-01-31 09:10:49 +01:00
</body>
2023-01-22 15:03:54 +01:00
</html>