fully-functioning music status!
- accessible via /music - only detects strawberry for now
This commit is contained in:
parent
f838edeadb
commit
8a1fabf91a
53 changed files with 923 additions and 51 deletions
31
music/pages/music.html
Normal file
31
music/pages/music.html
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Nothing is playing...</title>
|
||||
<link rel="stylesheet" href="/music/public/fonts/inter/inter.css">
|
||||
<link rel="stylesheet" href="/music/public/music.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="music" class="paused">
|
||||
<div class="flex flex-col">
|
||||
<!-- <p class="nowplaying">Now Playing</p> -->
|
||||
|
||||
<div class="flex flex-row">
|
||||
<img src="/music/artwork"
|
||||
alt="song artwork"
|
||||
class="artwork"
|
||||
width="96" height="96"/>
|
||||
|
||||
<div class="flex flex-col justify-center title-artist">
|
||||
<p class="title text-ellipses">Untitled Track</p>
|
||||
<p class="artist text-ellipses">Unknown Artist</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script type="module" src="/music/public/music.js"></script>
|
||||
<div id="cover"></div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue