some-automoderation/routes/base_page.go

17 lines
185 B
Go

package routes
type baseData struct {
Title string
LoggedIn bool
}
type headerData struct {
Title string
}
type pageData struct {
Base baseData
Content any
Header headerData
}