-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
82 lines (65 loc) · 3.35 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HG Units</title>
<meta name="description" content="Collection of units from Highgrounds">
<meta name="author" content="Grae Drake">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="http://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.3/handlebars.js"></script>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<header>
<div class="container">
<ul class="navigation row">
<a class="three columns" href="http://www.highgroundsgame.com" target="_blank">
<li>Play Highgrounds <i class="fa fa-external-link-square"></i></li>
</a>
<a class= "two columns" href="http://www.heartshapedgames.com/forums/forumdisplay.php?fid=6" target="_blank">
<li>Forum</li>
</a>
</ul>
</div>
</header>
<main class="container">
<div class="row hero">
<h2 style="margin-top: 10%">Highgrounds Units</h2>
</div>
<aside class="buttons">
<div class="search-text">
<p>Search</p>
<i class="fa fa-question-circle"></i>
</div>
<input id="search" type="text"/>
<div class="search-text">
<p href="#">Filter by city</p>
</div>
<div class="cities"></div>
</aside>
<section class="search-instructions">
<p>Search by unit name, type, cost, rarity, or ability.</p>
<p>Use a comma to separate multiple search criteria. For example, try searching for <span>2 gold, knight</span> or <span>crystal, thief</span>.</p>
<p>You can also limit your search to certain fields by starting your query with <span>!name</span>, <span>!type</span>, <span>!cost</span>, <span>!rarity</span>, or <span>!action</span>. For example, try searching for <span>!cost 3 gold</span> or <span>!rarity rare</span>.</p>
</section>
<div class="unit-wrapper">
<div class="units"></div>
</div>
</main>
<footer>
<div>All images copyright 2012 Heart Shaped Games, all rights reserved.</div>
<div>Made with <i class="fa fa-code"></i> by <a href="http://www.grae.io/">Grae</a> and <a href="https://github.com/Grae-Drake/hg-units/graphs/contributors">contributers</a>. Fork me on <a href="https://www.github.com/Grae-Drake/hg-units">GitHub</a>. Now go play <a href="http://www.highgroundsgame.com" target="_blank">Highgrounds</a>.</div>
</footer>
<script type="text/javascript" src="js/xml-to-json.js"></script>
<script type="text/javascript" src="js/templates.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/unitCompendium.js"></script>
<script type="text/javascript" src="js/actionData.js"></script>
</body>
</html>