Deltacms/core/layout/blank.php

31 lines
970 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-07 16:53:49 +01:00
<base href="<?php echo helper::baseUrl(true); ?>">
<link rel="stylesheet" href="core/vendor/normalize/normalize.min.css">
2023-02-07 16:53:49 +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">
2023-02-06 17:43:22 +01:00
<?php $this->showStyle();
2023-02-07 16:53:49 +01:00
$this->showSharedVariables();
2023-02-06 17:43:22 +01:00
$this->sortVendor();
$this->showVendor('css');?>
2023-02-07 16:53:49 +01:00
<link rel="stylesheet" href="<?php echo self::DATA_DIR; ?>custom.css">
2023-02-02 22:12:48 +01:00
<?php
$this->showFavicon();
2023-02-06 17:43:22 +01:00
$this->showVendor('jshead');
2023-02-02 22:12:48 +01:00
?>
</head>
2022-01-31 09:10:49 +01:00
<body>
2023-02-06 17:43:22 +01:00
<?php $this->showContent(); ?>
<?php $this->showVendor('jsbody'); ?>
<?php $this->showScript(); ?>
2022-01-31 09:10:49 +01:00
</body>
2023-01-22 15:03:54 +01:00
</html>