mirror of
https://github.com/Theodor-Springmann-Stiftung/lenz-web.git
synced 2026-03-21 13:55:30 +00:00
24 lines
445 B
Go
24 lines
445 B
Go
package pages
|
|
|
|
import (
|
|
"github.com/Theodor-Springmann-Stiftung/lenz-web/app"
|
|
)
|
|
|
|
type HomePage struct{}
|
|
|
|
func init() {
|
|
app.RegisterPage(HomePage{})
|
|
}
|
|
|
|
func (p HomePage) Discover(a *app.App) ([]app.Route, error) {
|
|
return []app.Route{
|
|
{Path: "/", Kind: "page", ID: "home"},
|
|
}, nil
|
|
}
|
|
|
|
func (p HomePage) Model(a *app.App, route app.Route) (map[string]any, error) {
|
|
return map[string]any{
|
|
"Message": "Template system is working.",
|
|
}, nil
|
|
}
|