-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (48 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
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html>
<head>
<title>Overcomplicated</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" />
<meta name="description" content="Helps Overwatch teams choose an appropriate counter-composition based upon the enemy team's choices." />
<link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="vendor/bulma/css/bulma.css" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<overcomplicated-app>
<section class="hero has-text-centered is-fullwidth is-large">
<div class="hero-body">
<div class="container">
<h1 class="title">Loading...</h1>
<h2 class="subtitle">Cheers love!</h2>
</div>
</div>
</section>
</overcomplicated-app>
<script src="vendor/systemjs/dist/system.js"></script>
<script src="vendor/core-js/client/shim.min.js"></script>
<script src="vendor/zone.js/dist/zone.min.js"></script>
<script src="vendor/reflect-metadata/Reflect.js"></script>
<script src="systemjs.config.js"></script>
<script src="app/app.js"></script>
<script>
document.write("<base href='" + document.location.pathname + "' />");
System.import('main')
.then(function () {
console.log('app loaded');
})
.catch(function (err) {
console.error(err);
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-2195173-5', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>