-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (108 loc) · 3.54 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="author" content="William Santos" />
<meta name="description" content="My Latest New Listened Albums" />
<meta
name="keywords"
content="html5, css3, javascript, music, albums, disc"
/>
<!-- css -->
<link rel="stylesheet" href="libs/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="css/listened-albums.css" />
<link rel="shortcut icon" href="files/disc-vinyl.png" />
<title>My Latest New Listened Albums</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top mb-5">
<div class="container">
<!-- Toggle -->
<div>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#movelmenu"
aria-controls="movelmenu"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
</div>
<!-- Search -->
<div id="movelmenu" class="collapse navbar-collapse my-3 my-sm-0">
<div class="form-row col-md-6 m-auto">
<div class="form-group col-md-8 col-sm-6 my-md-0 my-3">
<input
type="search"
id="keywords_input"
class="form-control"
placeholder="Search"
aria-label="Search"
value=""
/>
</div>
<div class="form-group col-md-4 col-sm-6">
<select id="property_select" class="form-control mr-sm-2">
<option value="name">Album</option>
<option value="artist">Artist</option>
<option value="releaseYear">Released Year</option>
<option value="genre">Genre</option>
</select>
</div>
</div>
</div>
</div>
</nav>
<br />
<!-- header -->
<header class="my-5">
<h1 class="text-center text-white">My Latest New Listened Albums</h1>
</header>
<!-- Content -->
<main>
<article>
<div class="container">
<div class="row">
<div class="jumbotron m-auto">
<p>
Challanged by
<a
href="https://mrs4w.github.io/listened-albums/"
target="_blank"
>
MrS4w
</a>
to do something related to my last "new" listened albums.
</p>
</div>
</div>
<!-- Data -->
<div class="row mt-3 mb-3">
<div class="col-12">
<h2 class="text-center" id="albums_header">Header</h2>
</div>
</div>
<div id="year_container"></div>
</div>
</article>
</main>
<footer>
<p class="text-center">
Done by
<a href="https://github.com/williamdsw" target="_blank">
William Santos
</a>
</p>
</footer>
<!-- js -->
<script src="libs/jquery/jquery-3.4.1.min.js"></script>
<script src="libs/bootstrap/bootstrap.min.js"></script>
<script src="js/listened-albums.js"></script>
</body>
</html>