2023-04-14 03:52:30 +02:00
|
|
|
<?php
|
|
|
|
echo '<html>';
|
|
|
|
echo '<head>';
|
|
|
|
echo '<title>'.htmlspecialchars($title).'</title>';
|
|
|
|
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0">';
|
|
|
|
echo '<META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=<?=$www_charset?>">';
|
|
|
|
|
2021-06-07 05:28:55 +02:00
|
|
|
if(file_exists($config_dir.'/googleanalytics.conf')) {
|
|
|
|
include $config_dir.'/googleanalytics.conf';
|
|
|
|
}
|
2020-11-29 01:55:31 +01:00
|
|
|
|
|
|
|
if (file_exists('mods/header.php')) {
|
|
|
|
include "mods/header.php";
|
|
|
|
} else {
|
|
|
|
include "header.php";
|
|
|
|
}
|
|
|
|
|
2021-11-05 10:14:30 +01:00
|
|
|
echo '<hr>';
|
|
|
|
echo '</head>';
|