27 lines
960 B
Plaintext
Raw Normal View History

2017-11-07 16:46:39 +00:00
component ExploreAnime(animeList []*arn.Anime, year string, status string, typ string)
ExploreFilters(year, status, typ)
h1.page-title Explore
2017-11-07 16:50:03 +00:00
if len(animeList) == 0
p.no-data.mountable No anime found using the above filters.
else
AnimeGrid(animeList)
2017-11-07 16:46:39 +00:00
component ExploreFilters(year string, status string, typ string)
.explore-filters
select#filter-year.action(value=year, data-action="filterAnime", data-trigger="change")
for year := time.Now().Year()+1; year >= 1951; year--
option(value=year)= year
select#filter-status.action(value=status, data-action="filterAnime", data-trigger="change")
option(value="current") Current
option(value="upcoming") Upcoming
option(value="finished") Finished
select#filter-type.action(value=typ, data-action="filterAnime", data-trigger="change")
option(value="tv") TV
option(value="movie") Movie
option(value="ova") OVA
option(value="ona") ONA
option(value="special") Special