This repository was archived by the owner on Dec 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (67 loc) · 2.87 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
<!--
https://content-security-policy.com
https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name/theme-color
https://webhint.io/docs/user-guide/hints/hint-highest-available-document-mode
https://webhint.io/docs/user-guide/hints/hint-meta-charset-utf-8
https://webhint.io/docs/user-guide/hints/hint-meta-viewport
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="#000000" name="theme-color" />
<meta
content="base-uri 'self'; connect-src 'self'; default-src 'none'; form-action 'self'; img-src 'self' data:; script-src 'self'; style-src 'self' 'unsafe-inline'"
http-equiv="Content-Security-Policy"
/>
<meta content="en_GB" property="og:locale" />
<meta content="github.com/madliani/reactify" property="og:site_name" />
<meta
content="https://github.com/madliani/reactify"
property="og:url"
/>
<meta
content="https://raw.githubusercontent.com/madliani/reactify/main/assets/images/reactify-homepage.png"
name="twitter:image"
/>
<meta
content="https://raw.githubusercontent.com/madliani/reactify/main/assets/images/reactify-homepage.png"
property="og:image"
/>
<meta content="ie=edge" http-equiv="X-UA-Compatible" />
<meta content="initial-scale=1.0, width=device-width" name="viewport" />
<meta content="madliani" name="author" />
<meta content="reactify, react" name="keywords" />
<meta content="Reactify" name="twitter:title" />
<meta content="Reactify" property="og:title" />
<meta content="ru_RU" property="og:locale:alternate" />
<meta content="summary_large_image" name="twitter:card" />
<meta content="The React Starter Kit." name="description" />
<meta content="The React Starter Kit." name="twitter:description" />
<meta content="The React Starter Kit." property="og:description" />
<meta content="website" property="og:type" />
<base href="/" />
<link
href="./assets/icons/apple-touch-icon.png"
rel="apple-touch-icon"
/>
<link href="./assets/icons/favicon.ico" rel="icon" />
<title>Reactify</title>
</head>
<body>
<div id="root"></div>
<noscript>
For full functionality of this site it is necessary to enable
JavaScript. Here are the
<a
href="https://www.enable-javascript.com"
rel="noopener noreferrer"
target="_blank"
>
instructions how to enable JavaScript in your web browser</a
>.
</noscript>
<script defer src="./src/index.tsx" type="module" />
</body>
</html>