Deltacms/core/layout/blank.php

29 lines
762 B
PHP

<!DOCTYPE html>
<html lang="<?php echo $this->getData(['config', 'i18n', 'langAdmin']);?>">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php
$this->showMetaTitle();
?>
<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();?>
<link rel="stylesheet" href="<?php echo self::DATA_DIR; ?>custom.css">
<?php
$this->showFavicon();
$this->showVendor();
?>
</head>
<body>
<?php
$this->showContent();
$this->showVendorJsBody();
$this->showScript();
?>
</body>
</html>