-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathhead.php
More file actions
30 lines (30 loc) · 2.09 KB
/
head.php
File metadata and controls
30 lines (30 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
//require_once __DIR__ . '/resources/includes/constants.php';
$device = array_search(true, DEVICE);
?>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<!-- Start Favicon-->
<link rel="apple-touch-icon" type="image/png" sizes="192x192" href="<?= WEBROOT ?>/resources/manifest/icon-app-192.png">
<link rel="apple-touch-icon" type="image/png" sizes="512x512" href="<?= WEBROOT ?>/resources/manifest/icon-app-512.png">
<link rel="icon" type="image/png" sizes="192x192" href="<?= WEBROOT ?>/resources/manifest/icon-192.png">
<link rel="icon" type="image/png" sizes="512x512" href="<?= WEBROOT ?>/resources/manifest/icon-512.png">
<meta name="theme-color" content="#535aa2">
<link rel="manifest" href="<?= WEBROOT ?>/resources/manifest/manifest.json"<?= ($helper->isDevelopment()) ? ' crossorigin="use-credentials"' : '' ?>>
<!-- End Favicon -->
<!-- Extra Fonts -->
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script&display=swap" rel="stylesheet">
<!-- !Extra Fonts -->
<title><?= SITECAMEL ?></title>
<link href="<?= WEBROOT ?>/resources/css/bulma.css" media="screen" rel="stylesheet">
<link href="<?= WEBROOT ?>/resources/css/custom.css" rel="stylesheet">
<link href="<?= WEBROOT ?>/resources/css/light.css" id="light-theme" rel="stylesheet">
<link href="<?= WEBROOT ?>/resources/css/dark.css" id="dark-theme" rel="stylesheet">
<link href="<?= WEBROOT ?>/resources/darkV2.css" id="dark-theme-2" rel="stylesheet">
<link href="<?= WEBROOT ?>/resources/input.css" rel="stylesheet">
<link href="<?= WEBROOT ?>/resources/fishyUtils.css" rel="stylesheet">
<?php if ($device == 'quest') { echo '<link href=" ' . WEBROOT . '/resources/quest.css" rel="stylesheet">'; } ?>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="<?= WEBROOT ?>/resources/js/theme.js"></script>
<script src="<?= WEBROOT ?>/helper.js"></script>
<!-- Hi mom! -->