Deltacms/core/layout/blank.php

25 lines
940 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();
$this->showFavicon();
?>
2023-01-22 16:10:21 +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/blank.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>theme.css">
<?php $this->showStyle();
$this->showVendorCss();?>
2023-01-22 16:10:21 +01:00
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css">
<?php $this->showVendor(); ?>
</head>
2022-01-31 09:10:49 +01:00
<body>
<?php $this->showContent(); ?>
<?php $this->showScript(); ?>
<?php $this->showVendorJsBody(); ?>
2022-01-31 09:10:49 +01:00
</body>
2023-01-22 15:03:54 +01:00
</html>