-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 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
<!DOCTYPE html>
<html ng-app="Application">
<head>
<title></title>
<meta charset="utf-8">
<link rel="icon" type="image/png" href="http://5by5.tv/assets/icons/headphones-e7665bdf44618e4673bd177d747aa78d.png" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,800' rel='stylesheet' type='text/css'/>
<link href="style/icon-font/style.css" rel="stylesheet" rel='stylesheet' type='text/css'/>
<link href="style/main.css" rel='stylesheet' type='text/css'/>
</head>
<body>
<div id="side-bar" ng-include="'/templates/side-bar.html'" ng-controller="sideBarCtrl"></div>
<div id="top-bar" ng-include="'/templates/top-bar.html'" ng-controller="topBarCtrl"></div>
<div id="main-container" ng-controller="mainCtrl" ng-switch on="model.viewMode">
<div class="items-list" ng-switch-when="tracks">
<div ng-include="'templates/tracksList.html'" ng-controller="tracksListCtrl"></div>
</div>
<div class="items-grid" ng-switch-when="albums">
<div ng-include="'templates/albumsGrid.html'" ng-controller="albumsListCtrl"></div>
</div>
<div class="items-grid" ng-switch-when="artists">
<div ng-include="'templates/artistsGrid.html'" ng-controller="artistsListCtrl"></div>
</div>
<div class="items-list" ng-switch-when="favourites">
<div ng-include="'templates/favouritesList.html'" ng-controller="favouritesListCtrl"></div>
</div>
<div class="items-list" ng-switch-when="playlists">
<div ng-include="'templates/playlistsList.html'" ng-controller="playlistsListCtrl"></div>
</div>
</div>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="https://apis.google.com/js/client.js?onload=readyGapi"></script>
</body>
</html>