Add music platform with DGDN album player
- Create /music landing page with artist grid - Add /music/Darnea artist page with album listing - Build /music/Darnea/DGDN album player with clickable tracklist - Auto-play next track on completion - Dangrubb-branded styling with cyan accent colors - FLAC player pulls from /src/audio/DGDN - Move landing page links to bottom with yellow announcement box
This commit is contained in:
30
music/index.html
Normal file
30
music/index.html
Normal file
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>dangrubb.net Music</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="/src/img/favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="../style.css">
|
||||
<link rel="stylesheet" href="./music.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="music-container">
|
||||
<div class="music-header">
|
||||
<h1><a href="/">dangrubb</a>.net/music</h1>
|
||||
</div>
|
||||
|
||||
<div class="artists-grid">
|
||||
<div class="artist-card">
|
||||
<div class="artist-cover">🎤</div>
|
||||
<h2><a href="/music/Darnea">Darnea</a></h2>
|
||||
<p class="artist-meta">1 album</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="music-footer">
|
||||
<p><a href="/">← back home</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user