From c82d25d9c8a262aa90a20d2143fc47c193ae3b35 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sat, 13 Jun 2026 21:23:17 +0200 Subject: [PATCH] feat: add standalone top picks template --- templates/top_picks.gohtml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 templates/top_picks.gohtml diff --git a/templates/top_picks.gohtml b/templates/top_picks.gohtml new file mode 100644 index 0000000..e90ba73 --- /dev/null +++ b/templates/top_picks.gohtml @@ -0,0 +1,30 @@ +{{define "title"}}Top Picks{{end}} +{{define "content"}} +
+
+
+

Top Picks for You

+

The full ranked list from your current watchlist profile.

+
+ Back to Home +
+ + {{if eq (len .Animes) 0}} +
+ +

No top picks yet

+

Add a few anime to your watchlist so the recommender has something to learn from.

+ +
+ {{else}} +
+ {{range .Animes}} + {{template "anime_card" dict "Anime" . "WithActions" true "IsWatchlist" (index $.WatchlistMap .MalID)}} + {{end}} +
+ {{end}} +
+{{end}}