initial commit
This commit is contained in:
17
head.php
Normal file
17
head.php
Normal 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>
|
||||
Reference in New Issue
Block a user