-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
42 lines (41 loc) · 1.48 KB
/
index.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
37
38
39
40
41
42
<!--
Hey, are you browsing through our code? It might be hard because we use
webpack to minify and compress everything. Check out our GitHub repo at
http://github.com/zsnout/zsnout.com for easier access to the code. Feel
free to contribute and submit pull requests to help out zSnout. Thanks!
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link href="/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180" />
<link href="/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png" />
<link
href="/android-chrome-192x192.png"
rel="icon"
sizes="192x192"
type="image/png"
/>
<link href="/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png" />
<link href="/manifest.json" rel="manifest" />
<link color="#0c5a5e" href="/safari-pinned-tab.svg" rel="mask-icon" />
<link href="/favicon.ico" rel="shortcut icon" />
<meta content="zSnout" name="apple-mobile-web-app-title" />
<meta content="zSnout" name="application-name" />
<meta content="#00aba9" name="msapplication-TileColor" />
<meta content="#345558" name="theme-color" />
<meta
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
name="viewport"
/>
<meta
content="zSnout is a collection of amazing creations by sakawi."
name="description"
/>
<title>zSnout</title>
</head>
<body>
<div id="app"></div>
<script src="/src/main.ts" type="module"></script>
</body>
</html>