16 lines
170 B
Go
16 lines
170 B
Go
package routes
|
|
|
|
type baseData struct {
|
|
Title string
|
|
}
|
|
|
|
type headerData struct {
|
|
Title string
|
|
}
|
|
|
|
type pageData struct {
|
|
Base baseData
|
|
Content any
|
|
Header headerData
|
|
}
|