22 lines
376 B
Go
Raw Normal View History

package posts
import (
2017-06-27 22:16:45 +00:00
"net/http"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
)
2017-06-16 23:25:02 +00:00
// Get post.
func Get(ctx *aero.Context) string {
id := ctx.Get("id")
post, err := arn.GetPost(id)
if err != nil {
2017-06-27 22:16:45 +00:00
return ctx.Error(http.StatusNotFound, "Post not found", err)
}
return ctx.HTML(components.Post(post))
}