-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (46 loc) · 2.02 KB
/
index.html
File metadata and controls
53 lines (46 loc) · 2.02 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
51
52
53
<!doctype html>
<html ng-app="cloudplayer">
<head>
<meta charset="UTF-8">
<title>cloudplayer by Max Chernin</title>
<!-- favicon-->
<link href="/assets/images/favicon.ico" rel="icon" type="image/x-icon" />
<!-- Core CSS -->
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<!-- Animate CSS -->
<link rel="stylesheet" href="bower_components/please-wait/build/please-wait.css">
<link rel="stylesheet" href="bower_components/toastr/toastr.css">
<!-- Custom Css file -->
<link rel="stylesheet" href="assets/css/custom.css">
<!-- custom fonts-->
<link href='https://fonts.googleapis.com/css?family=Lobster|Exo+2:400,600italic|Patua+One' rel='stylesheet' type='text/css'>
</head>
<body class="body">
<!-- Container -->
<div ng-cloak class="container cloudplayer">
<cloudplayer-header title="CloudPlayer" description="Personal SoundCloud Player"></cloudplayer-header>
<!-- header directive-->
<div ui-view class="custom-font">
</div>
<!-- goes to mainpage.html-->
</div>
<!-- ./ container-->
<footer>
<div class="well animated slideInDown">Created by <a href="http://blog.maxchernin.net">Max Chernin</a></div>
</footer>
</body>
<!-- Vendors -->
<script src="bower_components/please-wait/build/please-wait.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/angular.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="bower_components/angular-resource/angular-resource.js"></script>
<script src="bower_components/angular-cookies/angular-cookies.js"></script>
<script src="bower_components/toastr/toastr.js"></script>
<!-- App <-> minified -->
<script src="assets/javascript/load-screen.js"></script>
<script src="build/app/javascript/cloudplayer-v0.1.0.js"></script>
<!-- Assets -->
</html>