forked from jonluca/vite-typescript-ssr-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
content="width=device-width,initial-scale=1,maximum-scale=10,minimum-scale=.25,user-scalable=yes"
name="viewport"
/>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<!--head-->
<!--meta-->
<meta property="og:type" content="website">
<meta property="og:site_name" content="Letní stanový tábor Kamenná">
<meta property="og:description" content="Užijte si 19 dní plných dobrodružství na letním stanovém táboře Kamenná! Děti se mohou těšit na hry, sportovní aktivity a objevování přírody, které jim zanechají nezapomenutelné zážitky.">
<meta property="og:url" content="https://www.stanovytabor.cz">
<meta property="og:image" content="./assets/dummy.jpg">
<!-- ### Manifest and icons ### -->
<!-- General -->
<link rel="manifest" href="/site.webmanifest" />
<meta name="theme-color" content="#ffffff" />
<meta name="application-name" content="App" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<!-- Apple -->
<meta name="apple-mobile-web-app-title" content="App" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
</head>
<body>
<div id="app" style="height: 100%; width: 100%"><!--app-html--></div>
<script type="module" src="/src/client/entry-client.tsx"></script>
</body>
</html>