2015-04-23 10:24:50 +02:00
|
|
|
<!DOCTYPE html>
|
2019-12-05 21:25:58 +01:00
|
|
|
<html class="no-js" lang="<?=$config->getLanguage() ?>">
|
2015-04-23 10:24:50 +02:00
|
|
|
<head>
|
2019-12-05 21:25:58 +01:00
|
|
|
<title><?= $page['title']; ?> <?= ($page['title'] != $config->getTitle()) ? '- ' . $config->getTitle() : "" ?></title>
|
2017-11-07 22:39:34 +01:00
|
|
|
<?php //SEO meta tags...
|
2018-02-25 20:12:18 +01:00
|
|
|
if (array_key_exists('attributes', $page) && array_key_exists('description', $page['attributes'])) {
|
2017-11-07 22:39:34 +01:00
|
|
|
echo " <meta name=\"description\" content=\"{$page['attributes']['description']}\">\n";
|
2019-12-05 21:25:58 +01:00
|
|
|
} elseif ($config->hasTagline()) {
|
|
|
|
echo " <meta name=\"description\" content=\"{$config->getTagline()}\">\n";
|
2017-11-07 22:39:34 +01:00
|
|
|
}
|
2018-02-25 20:12:18 +01:00
|
|
|
if (array_key_exists('attributes', $page) && array_key_exists('keywords', $page['attributes'])) {
|
2017-11-07 22:39:34 +01:00
|
|
|
echo " <meta name=\"keywords\" content=\"{$page['attributes']['keywords']}\">\n";
|
|
|
|
}
|
2018-02-25 20:12:18 +01:00
|
|
|
if (array_key_exists('attributes', $page) && array_key_exists('author', $page['attributes'])) {
|
2017-11-07 22:39:34 +01:00
|
|
|
echo " <meta name=\"author\" content=\"{$page['attributes']['author']}\">\n";
|
2019-12-05 21:25:58 +01:00
|
|
|
} elseif ($config->hasAuthor()) {
|
|
|
|
echo " <meta name=\"author\" content=\"{$config->getAuthor()}\">\n";
|
2017-11-07 22:39:34 +01:00
|
|
|
}
|
|
|
|
?>
|
2015-04-23 10:24:50 +02:00
|
|
|
<meta charset="UTF-8">
|
2017-10-19 21:20:58 +02:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
2019-12-05 21:25:58 +01:00
|
|
|
<link rel="icon" href="<?= $config->getTheme()->getFavicon(); ?>" type="image/x-icon">
|
2017-10-19 21:20:58 +02:00
|
|
|
|
2015-04-23 10:24:50 +02:00
|
|
|
<!-- Mobile -->
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
2019-08-11 15:15:11 +02:00
|
|
|
<!-- JS -->
|
2019-09-20 23:10:01 +02:00
|
|
|
<script>
|
|
|
|
window.base_url = "<?php echo $base_url?>";
|
|
|
|
document.documentElement.classList.remove('no-js');
|
|
|
|
</script>
|
2019-08-11 15:15:11 +02:00
|
|
|
|
2015-04-23 10:24:50 +02:00
|
|
|
<!-- Font -->
|
2019-12-05 21:25:58 +01:00
|
|
|
<?php foreach ($config->getTheme()->getFonts() as $font) {
|
2020-04-22 21:55:53 +02:00
|
|
|
echo "<link href='$font' rel='stylesheet' type='text/css'>";
|
|
|
|
} ?>
|
2015-04-23 10:24:50 +02:00
|
|
|
|
|
|
|
<!-- CSS -->
|
2019-12-05 21:25:58 +01:00
|
|
|
<?php foreach ($config->getTheme()->getCSS() as $css) {
|
2020-04-22 21:55:53 +02:00
|
|
|
echo "<link href='$css' rel='stylesheet' type='text/css'>";
|
|
|
|
} ?>
|
2015-04-23 10:24:50 +02:00
|
|
|
|
2019-12-05 21:25:58 +01:00
|
|
|
<?php if ($config->getHTML()->hasSearch()) { ?>
|
2019-09-18 23:16:35 +02:00
|
|
|
<!-- Search -->
|
2019-09-23 22:10:07 +02:00
|
|
|
<link href="<?= $base_url; ?>daux_libraries/search.css" rel="stylesheet">
|
2017-10-19 21:20:58 +02:00
|
|
|
<?php } ?>
|
2015-04-23 10:24:50 +02:00
|
|
|
</head>
|
2019-09-21 22:00:00 +02:00
|
|
|
<body class="<?= $this->section('classes'); ?>">
|
2015-04-23 10:24:50 +02:00
|
|
|
<?= $this->section('content'); ?>
|
|
|
|
|
2015-07-20 15:59:52 +02:00
|
|
|
<?php
|
2019-12-05 21:25:58 +01:00
|
|
|
if ($config->getHTML()->hasGoogleAnalytics()) {
|
|
|
|
$this->insert('theme::partials/google_analytics', ['analytics' => $config->getHTML()->getGoogleAnalyticsId(), 'host' => $config->hasHost() ? $config->getHost() : '']);
|
2015-07-20 15:59:52 +02:00
|
|
|
}
|
2019-12-05 21:25:58 +01:00
|
|
|
if ($config->getHTML()->hasPiwikAnalytics()) {
|
|
|
|
$this->insert('theme::partials/piwik_analytics', ['url' => $config->getHTML()->getPiwikAnalyticsUrl(), 'id' => $config->getHTML()->getPiwikAnalyticsId()]);
|
2015-07-20 15:59:52 +02:00
|
|
|
}
|
|
|
|
?>
|
2015-04-23 10:24:50 +02:00
|
|
|
|
|
|
|
<!-- JS -->
|
2019-12-05 21:25:58 +01:00
|
|
|
<?php foreach ($config->getTheme()->getJS() as $js) {
|
2015-07-20 15:59:52 +02:00
|
|
|
echo '<script src="' . $js . '"></script>';
|
|
|
|
} ?>
|
2015-04-23 10:24:50 +02:00
|
|
|
|
2019-09-09 19:56:14 +02:00
|
|
|
<?php $this->insert('theme::partials/search_script', ['page' => $page, 'base_url' => $base_url]); ?>
|
2016-02-15 21:14:48 +01:00
|
|
|
|
2015-04-23 10:24:50 +02:00
|
|
|
</body>
|
|
|
|
</html>
|