-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
31 lines (30 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-73203609-3', 'auto');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<!-- End Google Analytics -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Command Line Heroes ARCADE</title>
<link rel="stylesheet" href="arcade.css">
<link rel="stylesheet" href="fonts/fa/fontawesome.css">
</head>
<body>
<div id="arcade-container">
<aside
class="to-menu"
v-on:click="toList"
v-bind:class="{ hidden: hideButton }">
<a v-on:click="toList" class="shimmer"><i class="fas fa-th"></i>{{ buttonText }}</a>
</aside>
<iframe class="arcade-iframe" src="list.html" v-on:load="frameLoad" frameborder="0"></iframe>
</div>
<script type=module src="dist/arcade.js"></script>
</body>
</html>