-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (66 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Orion's Belt Battle Console</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="themes/slate/bootstrap.css" media="screen">
<link rel="stylesheet" href="themes/slate/bootswatch.min.css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../bower_components/html5shiv/dist/html5shiv.js"></script>
<script src="../bower_components/respond/dest/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="/" class="navbar-brand">Orion's Belt Battle Console</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li><a href="#/help">Help</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#/login">Login</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="page-header" id="banner">
<div class="row">
<div id="login" class="obbConsole col-lg-8 col-md-7 col-sm-6"></div>
<div id="games" class="obbConsole col-lg-8 col-md-7 col-sm-6"></div>
</div>
</div>
<footer>
<div class="row">
<div class="col-lg-12">
<ul class="list-unstyled">
<li class="pull-right"><a href="#top">Back to top</a></li>
<li><a href="/">Home</a></li>
<li><a href="http://status.orionsbelt.eu">Status</a></li>
<li><a href="https://github.com/orionsbelt-battlegrounds">Source Code</a></li>
<li><a href="https://github.com/orionsbelt-battlegrounds/api">API</a></li>
</ul>
<p>Orion's Belt: chess-like battle system with a powerful twist!</p>
<p>Made by <a href="https://github.com/orgs/orionsbelt-battlegrounds/people">an awesome team</a>. Contact them at <a href="mailto:[email protected]">[email protected]</a>.</p>
<p>Based on <a href="http://bootswatch.com/slate/" rel="nofollow">Slate</a>'s theme.</p>
</div>
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="themes/slate/bootstrap.min.js"></script>
<script src="themes/slate/bootswatch.js"></script>
<script src="js/app.js" type="text/javascript"></script>
</body>
</html>