2018-04-02 08:29:19 +02:00
|
|
|
<?php $layout = new layout($this); ?>
|
|
|
|
<!DOCTYPE html>
|
2018-11-14 19:05:55 +01:00
|
|
|
<html prefix="og: http://ogp.me/ns#" lang="fr">
|
2018-04-02 08:29:19 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<?php $layout->showMetaTitle(); ?>
|
|
|
|
<?php $layout->showMetaDescription(); ?>
|
2018-10-23 21:23:05 +02:00
|
|
|
<?php $layout->showMetaType(); ?>
|
2018-10-24 15:50:07 +02:00
|
|
|
<?php $layout->showMetaImage(); ?>
|
2018-04-02 08:29:19 +02:00
|
|
|
<?php $layout->showFavicon(); ?>
|
|
|
|
<?php $layout->showVendor(); ?>
|
2020-01-21 08:42:21 +01:00
|
|
|
<?php $layout->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/light.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'); ?>">
|
2018-04-02 08:29:19 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<?php $layout->showNotification(); ?>
|
|
|
|
<div id="site" class="container">
|
|
|
|
<section><?php $layout->showContent(); ?></section>
|
|
|
|
</div>
|
|
|
|
<?php $layout->showScript(); ?>
|
|
|
|
</body>
|
|
|
|
</html>
|