-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (75 loc) · 1.64 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="/favicon.ico"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
property="dc:language"
content="en"
/>
<meta
property="dc:date"
content="2023-07-10T12:00:00"
/>
<meta
property="dc:creator"
content="HQCasanova"
/>
<meta
property="dc:description"
name="description"
content="%VITE_META_DESCRIPTION%"
/>
<meta
property="og:description"
name="description"
content="%VITE_META_DESCRIPTION%"
/>
<meta
property="og:url"
content="%VITE_SERVER_URL%%BASE_URL%"
/>
<meta
property="og:title"
content="%VITE_META_TITLE%"
/>
<meta
property="og:image"
content="%VITE_SERVER_URL%%BASE_URL%social.png"
/>
<meta
property="og:image:secure_url"
content="%VITE_SERVER_URL%%BASE_URL%social.png"
/>
<title>%VITE_META_TITLE%</title>
</head>
<body class="w-full max-w-3xl my-12 mx-auto px-4 font-light bg-lightest-grey">
<header>
<h1>%VITE_META_TITLE%</h1>
</header>
<div id="app"></div>
<footer class="leading-6">
<p>
Based on Code Vertiser's
<a href="https://www.codevertiser.com/reactjs-challenge-4-crud-tasklist-app/"
>free challenge</a
>.
</p>
<p>
Check the
<a href="https://github.com/hqcasanova%BASE_URL%">source here</a>.
</p>
</footer>
<script
type="module"
src="/src/main.ts"
></script>
</body>
</html>