-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (51 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
{{> utils/analytics-script }}
<meta name="robots" content="index, follow">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no, minimum-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="A Site that helps you get a random hero on Dota 2.">
<meta name="keywords" content="Dota 2, Dota Random, Dota 2 Random, Dota 2 Random Tool, Dota 2 Random Heroes">
<meta name="author" content="Luan Sergio Damando">
<meta name="theme-color" content="#0F182D" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#0F182D">
<meta name="apple-mobile-web-app-title" content="DOTA 2 Random Heroes">
{{> utils/ios-splash-screen }}
{{> utils/favicon }}
<title>DOTA 2 Random Heroes</title>
<link rel="manifest" href="manifest.webmanifest">
<link rel="preload" href="/src/assets/css/normalizer.css" as="style">
<link rel="preload" href="/src/assets/css/apps.styl" as="style">
<link rel="preload" href="/src/assets/fonts/roboto/roboto-v20-latin-regular.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/src/assets/fonts/roboto/roboto-v20-latin-700.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/src/assets/js/index.js" as="script">
<link href="src/assets/css/normalizer.css" rel="stylesheet">
<link href="src/assets/css/apps.styl" rel="stylesheet">
</head>
<body>
<noscript>
<div class="noscript">You need to have Javascript enabled to run this app! :( <br>
<a class="noscript__link" href="https://support.google.com/adsense/answer/12654?hl=en">Click here</a> if you need help.
</div>
</noscript>
{{> header }}
<main class="limit">
{{> random }}
{{> heroesGallery }}
</main>
{{> install-box }}
{{> footer }}
<script src="src/assets/js/index.js"></script>
<script src="src/assets/js/install.js"></script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/service-worker.js')
});
}
</script>
</body>
</html>