2018-04-02 08:29:19 +02:00
|
|
|
<!DOCTYPE html>
|
2021-06-14 18:54:31 +02:00
|
|
|
<html prefix="og: http://ogp.me/ns#" lang="<?php echo self::$i18n;?>">
|
2018-04-02 08:29:19 +02:00
|
|
|
<head>
|
2020-11-01 07:56:04 +01:00
|
|
|
<meta charset="UTF-8">
|
2018-04-02 08:29:19 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2021-06-14 18:37:45 +02:00
|
|
|
<?php $this->showMetaTitle(); ?>
|
|
|
|
<?php $this->showMetaDescription(); ?>
|
|
|
|
<?php $this->showMetaType(); ?>
|
|
|
|
<?php $this->showMetaImage(); ?>
|
|
|
|
<?php $this->showFavicon(); ?>
|
|
|
|
<?php $this->showVendor(); ?>
|
|
|
|
<?php $this->showStyle(); ?>
|
2018-04-02 08:29:19 +02: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/blank.css">
|
2020-03-23 16:16:45 +01:00
|
|
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>theme.css?<?php echo md5_file(self::DATA_DIR.'theme.css'); ?>">
|
|
|
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css?<?php echo md5_file(self::DATA_DIR.'custom.css'); ?>"></head>
|
2018-04-02 08:29:19 +02:00
|
|
|
<body>
|
2021-06-14 18:37:45 +02:00
|
|
|
<?php $this->showContent(); ?>
|
|
|
|
<?php $this->showScript(); ?>
|
2018-04-02 08:29:19 +02:00
|
|
|
</body>
|
|
|
|
</html>
|