diff options
| author | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-06 23:43:35 -0700 |
|---|---|---|
| committer | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-06 23:43:35 -0700 |
| commit | ea6462e928f588c3fbff32e0850298d3ff3dbfb4 (patch) | |
| tree | 251446b62003236d1c99b53e6381fac68bc3f4b8 /templates/profile.html | |
| parent | ead38fdb13abb406065cef0743d7e411cb27eaf3 (diff) | |
Add /about page with rating system explanation
Introduces a public-facing /about page that explains the 1-3 star rating rubric with real examples pulled from the diary. Each star tier displays 3 randomly-selected, unique films (deduplicated by title to avoid rewatch duplicates).
Changes:
- New routers/about.py: GET /about queries films by stars, dedupes, randomizes
- New templates/about.html: Page with eyebrow, h1, three tier sections with example film cards, closing philosophy, and View Profile button
- main.py: Import about router, register it, add /about to public_paths in AuthMiddleware
- templates/base.html: Add About nav link after Stats
- templates/profile.html: Add About link to /tyler nav
- templates/login.html: Add About and View Profile buttons in footer, plus "Made with Lumière" repo link
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Diffstat (limited to 'templates/profile.html')
| -rw-r--r-- | templates/profile.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/profile.html b/templates/profile.html index 745ed32..7c847f4 100644 --- a/templates/profile.html +++ b/templates/profile.html @@ -13,6 +13,7 @@ <a class="brand" href="/">Lumière</a> <nav class="nav-actions" aria-label="Primary"> <a href="/tyler">Profile</a> + <a href="/about">About</a> </nav> </header> @@ -142,7 +143,7 @@ </main> <footer style="text-align: center; padding: 40px 20px; color: var(--muted); font-size: 12px; border-top: 1px solid var(--line); margin-top: 60px;"> - <p style="margin: 0;">Made with <a href="https://github.com/tylerhoang/lumiere" style="color: var(--accent); text-decoration: none;">Lumière</a></p> + <p style="margin: 0;">Made with <a href="https://git.tylerhoang.xyz/lumi.git" style="color: var(--accent); text-decoration: none;">Lumière</a></p> </footer> </div> |
