initial commit

This commit is contained in:
Luke Ogburn
2019-03-30 23:09:24 -04:00
commit b58ced7684
14 changed files with 479 additions and 0 deletions

17
head.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
require '../res/mobiledetect.php';
$detect = new Mobile_Detect;
$check = $detect->isMobile();
if($check){
$css = "mobile.css";
} else{
$css = "index.css";
}
?>
<head>
<meta charset="utf-8">
<title>Rubiks My Cube | <?php echo $t; ?></title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="<?php echo $css; ?>">
<link href="https://fonts.googleapis.com/css?family=Cutive+Mono|PT+Sans|Share+Tech+Mono|Yantramanav:300" rel="stylesheet">
</head>