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:
35
music/Darnea/index.html
Normal file
35
music/Darnea/index.html
Normal file
@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Darnea - dangrubb.net</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="/music">Music</a> / Darnea</h1>
|
||||
</div>
|
||||
|
||||
<div class="artist-detail">
|
||||
<div class="artist-banner">🎤</div>
|
||||
<h2>Darnea</h2>
|
||||
</div>
|
||||
|
||||
<div class="albums-grid">
|
||||
<div class="album-card">
|
||||
<div class="album-cover">🔥</div>
|
||||
<h3><a href="/music/Darnea/DGDN">DGDN</a></h3>
|
||||
<p class="album-meta">8 tracks</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="music-footer">
|
||||
<p><a href="/music">← back to music</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user