-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (28 loc) · 930 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="./icons/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rajaniraiyn's Web Base Boilerplate</title>
<meta
name="description"
content="An advanced boilerplate for building websites with modern features"
/>
<meta rel="canonical" href="./" />
<!-- PWA:START -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="./icons/apple-touch-icon.png"
/>
<link rel="icon" type="image/png" sizes="32x32" href="./icons/x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./icons/x16.png" />
<meta name="theme-color" content="#ffffff" />
<!-- PWA:END -->
</head>
<body>
<div id="app"></div>
<script type="module" src="./src/main.ts" defer></script>
</body>
</html>