57 lines
1.9 KiB
HTML
57 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Music — Ash Pages</title>
|
|
<style>
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: #0f0f0f;
|
|
color: #e0e0e0;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 40px 20px;
|
|
}
|
|
.container { max-width: 600px; width: 100%; }
|
|
h1 { font-size: 1.8rem; margin-bottom: 4px; color: #f97316; }
|
|
.breadcrumb { color: #666; margin-bottom: 24px; font-size: 0.85rem; }
|
|
.breadcrumb a { color: #888; text-decoration: none; }
|
|
.breadcrumb a:hover { color: #f97316; }
|
|
.subtitle { color: #888; margin-bottom: 24px; }
|
|
.card {
|
|
background: rgba(255,255,255,0.04);
|
|
border: 1px solid rgba(255,255,255,0.08);
|
|
border-radius: 12px;
|
|
padding: 20px;
|
|
margin-bottom: 10px;
|
|
text-decoration: none;
|
|
display: block;
|
|
transition: background 0.2s, border-color 0.2s;
|
|
}
|
|
a.card:hover {
|
|
background: rgba(255,255,255,0.08);
|
|
border-color: rgba(255,255,255,0.15);
|
|
}
|
|
.card-title { color: #e0e0e0; font-weight: 600; margin-bottom: 4px; }
|
|
.card-sub { color: #888; font-size: 0.85rem; }
|
|
.card-date { color: #555; font-size: 0.8rem; margin-top: 6px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<p class="breadcrumb"><a href="../">Ash Pages</a> /</p>
|
|
<h1>🎵 Music</h1>
|
|
<p class="subtitle">Weekly samplers — expand don't reinforce</p>
|
|
|
|
<a href="sampler-2026-04-04.html" class="card">
|
|
<p class="card-title">Sampler #5 — The Undertow</p>
|
|
<p class="card-sub">Dark Frequency · Heavy Gaze · Yacht Rock Noir · Warp Rap · Feral Transmissions</p>
|
|
<p class="card-date">Week of April 4, 2026</p>
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html>
|