mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-26 17:27:59 +00:00
11 lines
119 B
Go
11 lines
119 B
Go
package components
|
|
|
|
type Page struct {
|
|
Path string
|
|
Title string
|
|
}
|
|
|
|
type Base struct {
|
|
Page *Page
|
|
Pages []*Page
|
|
}
|