14 lines
694 B
PHP
14 lines
694 B
PHP
<head>
|
|
<?php if ($_COOKIE['theme'] == "light") { ?>
|
|
<link rel="stylesheet" href="/html/light.css" type="text/css">
|
|
<?php } else { ?>
|
|
<link rel="stylesheet" href="/html/dark.css" type="text/css">
|
|
<?php } ?>
|
|
<link rel="shortcut icon" href="/html/favicon.ico">
|
|
<meta name="author" content="Darren 'Tadgy' Austin">
|
|
<meta name="description" content="<?php print ($description); ?>">
|
|
<meta name="keywords" content="<?php print ($keywords); ?>">
|
|
<meta name="google-site-verification" content="NrTA5svYU1fXFm6RMVkVvsCXF84mkwfKTckHfsTUyVM">
|
|
<meta name="msvalidate.01" content="9E9AFC7E738EB5E9FF87F0EEBE1BDE8A">
|
|
<title><?php print ($titleprefix . $title); ?></title>
|
|
</head>
|