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}}