Initial Commit for rss-link-app

Analyze links from rss feeds
This commit is contained in:
Waylon Walker 2025-09-03 20:22:39 -05:00
commit 060f998c59
8 changed files with 1837 additions and 0 deletions

24
templates/layout.html Normal file
View file

@ -0,0 +1,24 @@
<!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>