2025-01-21 14:00:40 +01:00
|
|
|
package pages
|
|
|
|
|
|
|
|
import (
|
2025-02-25 17:01:59 +01:00
|
|
|
"git.urbach.dev/go/web"
|
|
|
|
"git.urbach.dev/web/urbach.dev/server/app"
|
2025-01-21 14:00:40 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func Frontpage(ctx web.Context) error {
|
2025-02-25 23:09:01 +01:00
|
|
|
return app.RenderPost(ctx, "about")
|
2025-01-21 14:00:40 +01:00
|
|
|
}
|