12 lines
200 B
Go

package pages
import (
"git.urbach.dev/go/web"
"git.urbach.dev/web/urbach.dev/server/app"
)
func Post(ctx web.Context) error {
id := ctx.Request().Param("post")
return app.RenderPost(ctx, id)
}