-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmusic.html
More file actions
54 lines (54 loc) · 2.2 KB
/
Copy pathmusic.html
File metadata and controls
54 lines (54 loc) · 2.2 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
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Music | tbd</title>
<meta property="og:title" content="Music | tbd.codes" />
<meta property="og:description" content="the song-of-the-day log and the vinyl shelf — every day ends with a song." />
<meta property="og:url" content="https://tbd.codes/music" />
<meta name="twitter:card" content="summary" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/music.css" />
<link rel="stylesheet" href="css/terminal.css" />
<link rel="icon" type="image/png" href="favicon.ico" />
<link rel="alternate" type="application/rss+xml" title="tbd RSS Feed" href="/feed.xml" />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Heebo:wght@400;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header></header>
<div class="container">
<aside class="sidebar">
<button class="toggle-crt" onclick="toggleCrt()">Toggle screen effect</button>
</aside>
<main class="main-content">
<h1>Music</h1>
<p id="now-playing" class="now-playing hidden"></p>
<p class="song-log-intro">
every day ends with a song. the log started on the road — one track
per travel day — and continues from the monthly playlists.
♪ plays it, → opens the day.
</p>
<div id="song-log" class="song-log">
<p class="song-log-loading">loading songs…</p>
</div>
<div id="vinyl-shelf" class="vinyl-shelf hidden"></div>
</main>
</div>
<footer></footer>
<script src="js/include-components.js"></script>
<script src="js/site-data.js"></script>
<script src="js/presence.js"></script>
<script src="js/term-core.js"></script>
<script src="js/term-commands.js"></script>
<script src="js/now-data.js"></script>
<script src="js/term-overlay.js"></script>
<script src="js/main.js"></script>
<script src="js/music.js"></script>
<script src="js/music-shelf.js"></script>
<script src="js/music-nowplaying.js"></script>
</body>
</html>