-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 828 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no" />
<title>Video Games By Year</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Filter all released video games by year and system">
</head>
<body>
<div id="app"></div>
<script src="/dist/build.js"></script>
<script>
(function() {
var script = document.createElement('script');
window.counter = 'https://videogamesbyyear.goatcounter.com/count';
script.async = 1;
script.src = '//gc.zgo.at/count.js';
var ins = document.getElementsByTagName('script')[0];
ins.parentNode.insertBefore(script, ins);
})();
</script>
</body>
</html>