24 lines
416 B
Go
Raw Normal View History

2017-10-20 14:52:07 +00:00
package anime
import (
"net/http"
"github.com/animenotifier/notify.moe/components"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
)
// Episodes ...
func Episodes(ctx *aero.Context) string {
id := ctx.Get("id")
anime, err := arn.GetAnime(id)
if err != nil {
return ctx.Error(http.StatusNotFound, "Anime not found", err)
}
2017-11-05 08:32:46 +00:00
return ctx.HTML(components.AnimeEpisodes(anime.Episodes().Items))
2017-10-20 14:52:07 +00:00
}