forked from letsgamedev/gamesengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title>Games Engine</title>
<meta charset="utf-8">
<script src="https://use.fontawesome.com/9b6a41aa13.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.4.2/css/bulma.min.css" />
<script src="vue.min.js"></script>
<script src="games.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="root">
<h1 class="title is-1 headLine">Games Engine</h1>
<div class="title is-3">{{l.de.instruction}}</div>
<div class="columns">
<div class="column">
<button id="all-button" class="button is-danger" disabled onClick="seeAllGames()">See all</button>
</div>
<div class="column is-11">
<input name="query" v-model="searchQuery" placeholder="search" class="input searchbar">
</div>
</div>
<game-table :data="games" :head="head" :filter-key="searchQuery"></game-table>
<image-modal></image-modal>
</div>
<footer>© tom bleek <span class="icon"><a href="http://lets-gamedev.de/" target="_blank"><i class="fa fa-home"></i></a></span></footer>
<a href="https://www.patreon.com/bePatron?u=2503538" target="_blank"><img class="patreon" src="img/patreon.png"/></a>
<script src="script.js"></script>
</body>
</html>