-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathapp.html
36 lines (31 loc) · 1.13 KB
/
app.html
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
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="an educational tool for checking grades" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="application-name" content="Gradenight" />
<meta name="apple-mobile-web-app-title" content="Gradenight" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#13161b" />
<link rel="icon" href="/favicon.png" />
<link rel="manifest" href="/manifest.json" />
<link rel="apple-touch-icon" href="/apple-icon-180.png" />
<link rel="stylesheet" href="/font/font.css" />
<link rel="stylesheet" href="/bootstrap-icons/bootstrap-icons.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R43F56CHJ3"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-R43F56CHJ3')
</script>
%sveltekit.head%
</head>
<body>
<div id="svelte">%sveltekit.body%</div>
</body>
</html>