-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.14 KB
/
Copy pathindex.html
File metadata and controls
35 lines (31 loc) · 1.14 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
31
32
33
34
35
<!doctype html>
<html lang="en" data-dark="false">
<head>
<!-- basic -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<!-- favicons -->
<link rel="icon" type="image/png" sizes="512x512" href="/icon.png" />
<!-- basic -->
<title>%VITE_TITLE%</title>
<meta name="title" content="%VITE_TITLE%" />
<meta name="description" content="%VITE_DESCRIPTION%" />
<!-- open graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="%VITE_URL%" />
<meta property="og:title" content="%VITE_TITLE%" />
<meta property="og:description" content="%VITE_DESCRIPTION%" />
<meta property="og:image" content="%BASE_URL%share.png" />
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400..700&display=block"
rel="stylesheet"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>