-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
63 lines (50 loc) · 1.75 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
<!doctype html>
<html lang="en" ng-app='app'>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
<title>bfg-stats</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
.progress-bar {
width: 100%;
}
.navbar {
margin-bottom: 0;
}
.progress-container {
min-height: 20px;
height: 20px;
}
.footer {
font-size: 80%;
}
</style>
<script src="js/angular.1.0.8.min.js"></script>
<script src="js/angular-cookies.1.0.8.min.js"></script>
<script src="js/app.js"></script>
</head>
<body ng-controller="MainCtrl">
<nav class="navbar navbar-default navbar-static-top navbar-inverse" role="navigation" ng-controller="MenuCtrl">
<div class="navbar-header">
<a class="navbar-brand" href="#">bfg-stats</a>
<ul class="nav navbar-nav">
<li ng-class="isMenuActive('/stats')"><a href="#/stats">Statistics</a></li>
<li ng-class="isMenuActive('/pools')"><a href="#/pools">Pools</a></li>
</ul>
</div>
</nav>
<div class="progress-container">
<div class="progress progress-striped active" ng-show="working">
<div class="progress-bar progress-bar-info" role="progressbar">
</div>
</div>
</div>
<div class="container" ng-view></div>
<hr/>
<footer class="container text-center">
<p>© 2013 dzindra | Donate: 14ABuhZP7UnZQjwtyWrL19DUiof2jw5ykt</p>
<p><a href="https://github.com/dzindra/bfg-stats">Source on GitHub</a> | <a href="http://www.apache.org/licenses/LICENSE-2.0">Licensed under the Apache License, Version 2.0</a></p>
</footer>
</body>
</html>