mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 15:53:45 +00:00
12 lines
162 B
Go
12 lines
162 B
Go
package components
|
|
|
|
type Page struct {
|
|
Path string
|
|
Title string
|
|
Breadcrumb string
|
|
}
|
|
|
|
type Base struct {
|
|
Navbar []*Page
|
|
NavbarActive *Page
|
|
}
|