generated from dvcol/typescript-lib-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
46 lines (40 loc) · 1.97 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="icon" href="/favicon.png" sizes="192x192" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Svelte Simple Router | Svelte 5 SPA router</title>
<meta
name="description"
content="A simple SPA router built with svelte 5, with supports for hash routing, navigation and history API syncing, nested router, async loading and more !"
/>
<!-- Open Graph meta tags -->
<meta property="og:type" content="article" />
<meta id="og-title" property="og:title" content="Svelte Simple Router | Svelte 5 SPA router" />
<meta
id="og-description"
property="og:description"
content="A simple SPA router built with svelte 5, with supports for hash routing, navigation and history API syncing, nested router, async loading and more !"
/>
<meta id="og-image" property="og:image" content="https://dvcol.github.io/svelte-simple-router/img.png" />
<meta id="og-url" property="og:url" content="https://dvcol.github.io/svelte-simple-router" />
<!-- Twitter tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="Svelte Simple Router" />
<meta id="tw-title" name="twitter:title" content="Svelte Simple Router | Svelte 5 SPA router" />
<meta
id="tw-description"
name="twitter:description"
content="A simple SPA router built with svelte 5, with supports for hash routing, navigation and history API syncing, nested router, async loading and more !"
/>
<meta id="tw-image" name="twitter:image" content="https://dvcol.github.io/svelte-simple-router/img.png" />
<meta name="twitter:creator" content="@Dinh_Van" />
<meta name="twitter:site" content="@Dinh_Van" />
</head>
<body>
<div id="app"></div>
<script type="module" src="./demo/main.ts"></script>
</body>
</html>