rocksolid-light/Rocksolid_Light/common/head.inc

18 lines
413 B
PHP

<?php
echo '<!DOCTYPE html>';
echo '<html>';
echo '<head>';
echo '<title>'.htmlspecialchars($title).'</title>';
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0">';
if(file_exists($config_dir.'/googleanalytics.conf')) {
include $config_dir.'/googleanalytics.conf';
}
if (file_exists('mods/header.php')) {
include "mods/header.php";
} else {
include "header.php";
}
echo '<hr>';