2020-11-29 01:55:31 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title><?php echo htmlspecialchars($title); ?></title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=<?=$www_charset?>">
|
|
|
|
<?php
|
|
|
|
|
|
|
|
include "config.inc.php";
|
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>';
|