-
Notifications
You must be signed in to change notification settings - Fork 406
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (93 loc) · 2.78 KB
/
index.html
File metadata and controls
94 lines (93 loc) · 2.78 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>OpenDota - Dota 2 Statistics</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="OpenDota" />
<link
rel="apple-touch-icon"
href="/assets/images/icons/icon-72x72.png"
sizes="72x72"
/>
<link
rel="apple-touch-icon"
href="/assets/images/icons/icon-96x96.png"
sizes="96x96"
/>
<link
rel="apple-touch-icon"
href="/assets/images/icons/icon-128x128.png"
sizes="128x128"
/>
<link
rel="apple-touch-icon"
href="/assets/images/icons/icon-144x144.png"
sizes="144x144"
/>
<link
rel="apple-touch-icon"
href="/assets/images/icons/icon-152x152.png"
sizes="152x152"
/>
<link
rel="apple-touch-icon"
href="/assets/images/icons/icon-192x192.png"
sizes="192x192"
/>
<link
rel="apple-touch-icon"
href="/assets/images/icons/icon-384x384.png"
sizes="384x384"
/>
<link
rel="apple-touch-icon"
href="/assets/images/icons/icon-512x512.png"
sizes="512x512"
/>
<meta
name="msapplication-TileImage"
content="/assets/images/icons/icon-144x144.png"
/>
<meta name="msapplication-TileColor" content="#000" />
<meta
name="description"
content="Open source Dota 2 match data and player statistics"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="explanation"
content="Microsoft browsers require custom 404 pages to be at least 512 bytes in length."
/>
<link rel="icon" type="image/png" href="/assets/images/logo.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<meta property="og:image" content="/assets/images/logo-preview.jpg" />
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5591574346816667"
crossorigin="anonymous"
></script>
<script type="module" src="./src/index.jsx"></script>
</head>
<body>
<noscript>
<h3>
Looks like your browser isn't allowing scripts! Enable JavaScript to run
this app.
</h3>
</noscript>
<div id="root"></div>
</body>
</html>