11 lines
175 B
Go
11 lines
175 B
Go
package pages
|
|
|
|
import (
|
|
"git.urbach.dev/go/web"
|
|
"git.urbach.dev/web/urbach.dev/server/app"
|
|
)
|
|
|
|
func Frontpage(ctx web.Context) error {
|
|
return app.RenderPost(ctx, "about")
|
|
}
|