-
Notifications
You must be signed in to change notification settings - Fork 0
/
album.html
78 lines (75 loc) · 3.34 KB
/
album.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<!-- CSS Libraries -->
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open+Sans:400,800,600,700,300">
<link rel="stylesheet" type="text/css" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" type="text/css" href="styles/normalize.css">
<!-- Project CSS -->
<link rel="stylesheet" type="text/css" href="styles/main.css">
<link rel="stylesheet" type="text/css" href="styles/album.css">
<link rel="stylesheet" type="text/css" href="styles/player_bar.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bloc Jams</title>
</head>
<body class="album">
<nav class="navbar">
<a href="index.html" class="logo">
<img src="assets/images/bloc_jams_logo.png" alt="Bloc Jams">
</a>
<div class="links-container">
<a href="collection.html" class="navbar-link">Collection</a>
</div>
</nav>
<main class="album-view container narrow">
<section class="clearfix">
<div class="column half">
<img src="assets/images/album_covers/01.png" class="album-cover-art">
</div>
<div class="album-view-details column half">
<h2 class="album-view-title">The Colors</h2>
<h3 class="album-view-artist">Pablo Picasso</h3>
<h5 class="album-view-release-info">1909 Spanish Records</h5>
</div>
</section>
<table class="album-view-song-list">
</table>
</main>
<section class="player-bar">
<div class="container">
<div class="control-group main-controls">
<a class="previous">
<span class="ion-skip-backward"></span>
</a>
<a class="play-pause">
<span class="ion-play"></span>
</a>
<a class="next">
<span class="ion-skip-forward"></span>
</a>
</div>
<div class="control-group currently-playing">
<h2 class="song-name">My Dumb Song</h2>
<h2 class="artist-song-mobile">My Dumb Song - Fallout Boy</h2>
<div class="seek-control">
<div class="seek-bar">
<div class="fill"></div>
<div class="thumb"></div>
</div>
<div class="current-time">2:30</div>
<div class="total-time">4:45</div>
</div>
<h3 class="artist-name">Fallout Boy</h3>
</div>
<div class="control-group volume">
<span class="ion-volume-high icon"></span>
<div class="seek-bar">
<div class="fill"></div>
<div class="thumb"></div>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="scripts/album.js"></script>
</body>
</html>