diff --git a/templates/discover.gohtml b/templates/discover.gohtml deleted file mode 100644 index e1c8da4..0000000 --- a/templates/discover.gohtml +++ /dev/null @@ -1,117 +0,0 @@ -{{define "title"}}Discover{{end}} -{{define "content"}} -{{if .IsTopPicks}} -
-
-
-

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

- Don't know what to watch? -

-

- Let us pick something for you from our vast collection of anime. -

- -
-
- - {{/* Trending Section */}} -
-
-

Trending This Season

- {{template "section_action" dict "Href" "/browse?order_by=popularity&sort=asc" "Label" "View all"}} -
-
- {{template "discover_skeleton"}} -
-
- - {{/* Upcoming Section */}} -
-
-

Highly Anticipated

- {{template "section_action" dict "Href" "/browse?status=upcoming&order_by=members&sort=desc" "Label" "View all"}} -
-
- {{template "discover_skeleton"}} -
-
- - {{/* Top Section */}} -
-
-

All-Time Greats

- {{template "section_action" dict "Href" "/browse?order_by=score&sort=desc" "Label" "View all"}} -
-
- {{template "discover_skeleton"}} -
-
-
- - -{{end}} -{{end}} - -{{define "discover_section"}} -
- {{range .Animes}} - {{template "anime_card" dict "Anime" . "WithActions" true "IsWatchlist" (index $.WatchlistMap .MalID)}} - {{end}} -
-{{end}} - -{{define "discover_skeleton"}} -
- {{range (seq 8)}} -
-
-
-
-
- {{end}} -
-{{end}}