Files
ash-pages/index.html
T
ash-bot 3515e88dca fix: add <base href=/ash/> to all HTML pages
Site served at ogle.fyi/ash/ via Traefik strip-prefix middleware.
Without base tag, relative links resolve to ogle.fyi/workout/ (404).
With base tag, links resolve correctly to /ash/workout/ etc.

Also fixed both template files for future generated pages.
2026-04-13 08:29:56 -07:00

66 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<base href="/ash/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>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: 2rem;
margin-bottom: 8px;
background: linear-gradient(90deg, #f97316, #eab308);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.subtitle { color: #666; margin-bottom: 32px; }
.section {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 12px;
padding: 24px;
margin-bottom: 16px;
text-decoration: none;
display: block;
transition: background 0.2s, border-color 0.2s;
}
a.section:hover {
background: rgba(255,255,255,0.08);
border-color: rgba(255,255,255,0.15);
}
.section h2 { color: #f97316; font-size: 1.1rem; margin-bottom: 6px; }
.section p { color: #888; font-size: 0.9rem; }
.footer { color: #444; font-size: 0.8rem; margin-top: 32px; text-align: center; }
</style>
</head>
<body>
<div class="container">
<h1>😼 Ash Pages</h1>
<p class="subtitle">Generated content, served properly.</p>
<a href="workout/" class="section">
<h2>💪 Workouts</h2>
<p>Daily workout cards — KB+DB circuit program</p>
</a>
<a href="music/" class="section">
<h2>🎵 Music</h2>
<p>Weekly samplers — curated threads with notes</p>
</a>
<p class="footer">Content auto-published from Gitea via git-sync</p>
</div>
</body>
</html>