mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-27 01:33:37 +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
|
|
}
|