rocksolid-light/Rocksolid_Light/common/head.inc

28 lines
721 B
PHP
Raw Normal View History

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";
}
if (file_exists('mods/'.$style_css)) {
echo '<link rel="stylesheet" type="text/css" href="mods/'.$style_css.'">';
} else {
echo '<link rel="stylesheet" type="text/css" href="'.$style_css.'">';
}
?>
<hr>
</head>
<body textcolor="black" bgcolor="white">