-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.17 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script
src="https://kit.fontawesome.com/251912c541.js"
crossorigin="anonymous"
></script>
<title>%TITLE%</title>
<meta name="title" content="%TITLE%" />
<meta name="description" content="%DESCRIPTION%" />
<link href="./favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link rel="manifest" href="./manifest.json" />
<meta property="og:type" content="website" />
<meta property="og:url" content="%URL%" />
<meta property="og:title" content="%TITLE%" />
<meta property="og:description" content="%DESCRIPTION%" />
<meta property="og:image" content="%IMAGE%" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="%URL%" />
<meta property="twitter:title" content="%TITLE%" />
<meta property="twitter:description" content="%DESCRIPTION%" />
<meta property="twitter:image" content="%IMAGE%" />
</head>
<body>
<div id="app"></div>
<script src="./client/index.tsx" type="module"></script>
</body>
</html>