-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (46 loc) · 2.2 KB
/
index.html
File metadata and controls
50 lines (46 loc) · 2.2 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>StreamStats - App</title>
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="StreamStats" />
<meta property="og:title" content="BeamStats" />
<meta property="og:description" content="Welcome To The BeamStats Page Just Enter your Beam Name Your Good To Go" />
<meta property="og:url" content="http://streamstats.github.io/BeamStats/" />
<meta property="og:site_name" content="http://streamstats.github.io/BeamStats/" />
<meta property="og:locale" content="en_US" />
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="bower_components/Materialize/dist/css/materialize.min.css" type="text/css" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
</head>
<body ng-app="streamstats">
<nav>
<div class="nav-wrapper">
<a href="#" class="brand-logo center">StreamStats</a>
<a href="#" data-activates="mobileSideNav" class="button-collapse"><i class="material-icons">menu</i></a>
<ul id="nav-mobile" class="left hide-on-med-and-down">
<li><a href="#/">Home</a></li>
<li><a href="#/beam">Beam Stats</a></li>
<li><a href="#/twitch">Twitch Stats</a></li>
</ul>
<ul class="side-nav" id="mobileSideNav">
<li><a href="#/">Home</a></li>
<li><a href="#/beam">Beam Stats</a></li>
<li><a href="#/twitch">Twitch Stats</a></li>
</ul>
</div>
</nav>
<div class="container" ng-view >
</div>
<script>
window.$ = window.jQuery = require('./bower_components/jquery/dist/jquery.min.js');
</script>
<script src="http://hammerjs.github.io/dist/hammer.min.js" charset="utf-8"></script>
<script src="bower_components/Materialize/dist/js/materialize.js" charset="utf-8"></script>
<script src="bower_components/angular/angular.min.js" charset="utf-8"></script>
<script src="bower_components/angular-route/angular-route.min.js" charset="utf-8"></script>
<script src="bower_components/angular-animate/angular-animate.min.js" charset="utf-8"></script>
<script src="js/app.js" charset="utf-8"></script>
</body>
</html>