-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (43 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en" ng-app='myApp'>
<head>
<meta charset="UTF-8">
<title>WOW PVE HERO PVP</title>
<!-- bower:css -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="bower_components/normalize-css/normalize.css" />
<!-- endbower -->
<link href="https://fonts.googleapis.com/css?family=PT+Sans+Narrow" rel="stylesheet">
<link rel="stylesheet" href="https://npmcdn.com/angular-toastr/dist/angular-toastr.css" />
<link href="https://fonts.googleapis.com/css?family=MedievalSharp" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Amarante|Germania+One|MedievalSharp|New+Rocker|Uncial+Antiqua" rel="stylesheet">
<!-- inject:css -->
<link rel="stylesheet" href="/src/app/content/style.css">
<!-- endinject -->
</head>
<body>
<header id='main-header'>
<h1 class='hero'>PVE HERO PVP</h1>
</header>
<!-- Main container div -->
<div class="container">
<div ui-view></div>
</div> <!-- Main container div -->
<footer></footer>
<!-- bower:js -->
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<!-- endbower -->
<script src="https://npmcdn.com/angular-toastr/dist/angular-toastr.tpls.js"></script>
<!-- inject:js -->
<script src="/src/app/app.js"></script>
<script src="/src/app/detail/wow_detail.controller.js"></script>
<script src="/src/app/search/wow_multiplier.factory.js"></script>
<script src="/src/app/search/wow_search.controller.js"></script>
<script src="/src/app/search/wow_search.factory.js"></script>
<script src="/src/app/secrets/keys.value.js"></script>
<!-- endinject -->
</body>
</html>