24 lines
839 B
HTML
24 lines
839 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<title>RSS Link Audit</title>
|
|
<link rel="stylesheet" href="/static/styles.css"/>
|
|
</head>
|
|
<body>
|
|
<header class="px-6 py-4 border-b border-[var(--ra-copper)]">
|
|
<div class="max-w-5xl mx-auto flex items-center gap-4">
|
|
<div class="w-3 h-3 rounded-full bg-[var(--ra-gold)]"></div>
|
|
<a href="/" class="font-bold hover:underline">RSS Link Audit</a>
|
|
<span class="opacity-70 text-sm">with SQLite cache + SSE</span>
|
|
</div>
|
|
</header>
|
|
<main class="max-w-5xl mx-auto">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
<footer class="px-6 py-10 text-sm opacity-70">
|
|
<div class="max-w-5xl mx-auto">Built with FastAPI • Palette: Royal Armory</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|