-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
137 lines (128 loc) · 4.7 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!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" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link
rel="shortcut icon"
href="https://icons-for-free.com/iconfiles/png/512/rock-131982529839066541.png"
/>
<link rel="stylesheet" href="css/style.css" />
<title>Listened albums</title>
</head>
<body>
<header>
<h1>Listened albums</h1>
</header>
<div class="container">
<div class="row mt-4">
<div class="jumbotron">
<p>
On January 9, 2019, inspired by an idea seen on Twitter, I decided
that with every new album I listened to in the year, I would respond
in one thread, so I decided to put it on a web page as a kind of
"mural". <br />
<strong> See the thread below: </strong>
</p>
<div class="tweet">
<blockquote class="twitter-tweet">
<p lang="pt" dir="ltr">
Inspirado na ideia do @LFeh onde ele ouve um álbum novo por dia,
sempre que eu ouvir um independentemente de ser no mesmo dia ou
até no mesmo ano, responderei aqui com link pro álbum. 😃
</p>
— victor.ts (@MrS4W)
<a
href="https://twitter.com/MrS4W/status/1083106840509140999?ref_src=twsrc%5Etfw"
>January 9, 2019</a
>
</blockquote>
</div>
</div>
</div>
<div class="row text-center mt-5">
<div class="card col-lg-4 col-md-12">
<div class="card-body">
<h2 class="card-title">Albums listened in 2019</h2>
<a href="2019.html" class="btn btn-primary">List of albums</a>
<a
href="https://open.spotify.com/playlist/6VPIIgCQJvTCOZ1QTdVN32?si=JpzuI59kTjeH2TrMNBSyiw"
class="btn btn-primary"
>Playlist</a
>
</div>
</div>
<div class="card col-lg-4 col-md-12">
<div class="card-body">
<h2 class="card-title">Albums listened in 2020</h2>
<a href="2020.html" class="btn btn-primary">List of albums</a>
<a
href="https://open.spotify.com/playlist/0Wdncmefj52xNp9ziQndFg?si=cxObQcvtRw235339NfKX9w"
class="btn btn-primary"
>Playlist</a
>
</div>
</div>
<div class="card col-lg-4 col-md-12">
<div class="card-body">
<h2 class="card-title">Albums listened in 2021</h2>
<a href="2021.html" class="btn btn-primary">List of albums</a>
<a
href="https://open.spotify.com/playlist/52DNgKjXS75y5a3kKEmxtZ?si=MkdKqaD8QtqE9nHxzxA57A"
class="btn btn-primary"
>Playlist</a
>
</div>
</div>
<div class="card col-lg-4 col-md-12">
<div class="card-body">
<h2 class="card-title">Albums listened in 2022</h2>
<a href="2022.html" class="btn btn-primary">List of albums</a>
<a
href="https://open.spotify.com/playlist/5zYMdZrwkKRjKEIyxDa9Ew?si=d611ac33fcb442e9"
class="btn btn-primary"
>Playlist</a
>
</div>
</div>
<div class="card col-lg-4 col-md-12">
<div class="card-body">
<h2 class="card-title">Albums listened in 2023</h2>
<a href="2023.html" class="btn btn-primary">List of albums</a>
<a
href="https://open.spotify.com/playlist/0kunyMNGUn16skwwqHbBMj?si=bcd66ba3da9449ed"
class="btn btn-primary"
>Playlist</a
>
</div>
</div>
<div class="card col-lg-4 col-md-12">
<div class="card-body">
<h2 class="card-title">Albums listened in 2024</h2>
<a href="2024.html" class="btn btn-primary">List of albums</a>
<a
href="https://open.spotify.com/playlist/6NCeBlR1v2QlNHWKDGXCfQ?si=d66961b8e7ec4e35"
class="btn btn-primary"
>Playlist</a
>
</div>
</div>
</div>
</div>
<footer class="mt-5">
<p>Made with </> and ❤ by: Victor Antonio</p>
</footer>
<script
async
src="https://platform.twitter.com/widgets.js"
charset="utf-8"
></script>
</body>
</html>