{{define "title"}}Browse{{end}} {{define "content"}} {{if .WatchlistIDs}}{{end}}

Browse

{{template "filter_bar" .}}
{{if eq (len .Animes) 0}}

No anime found

{{else}}
{{range $i, $anime := .Animes}} {{$isThreshold := eq (add $i 1) (sub (len $.Animes) 8)}} {{if and $isThreshold $.HasNextPage}}
{{template "anime_card" dict "Anime" . "WithActions" true "IsWatchlist" (index $.WatchlistMap .MalID)}}
{{else}} {{template "anime_card" dict "Anime" . "WithActions" true "IsWatchlist" (index $.WatchlistMap .MalID)}} {{end}} {{end}}
{{end}}
{{end}} {{define "anime_card_scroll"}} {{$count := len .Animes}} {{range $i, $anime := .Animes}} {{$isThreshold := eq (add $i 1) (sub $count 8)}} {{if and $isThreshold $.HasNextPage}}
{{template "anime_card" dict "Anime" $anime "WithActions" true "IsWatchlist" (index $.WatchlistMap $anime.MalID)}}
{{else}} {{template "anime_card" dict "Anime" $anime "WithActions" true "IsWatchlist" (index $.WatchlistMap $anime.MalID)}} {{end}} {{end}} {{end}}