2024-02-12 10:22:14 +00:00
|
|
|
package components
|
|
|
|
|
|
|
|
type Page struct {
|
2024-02-15 22:47:56 +00:00
|
|
|
Path string
|
|
|
|
Title string
|
|
|
|
Breadcrumb string
|
2024-02-12 10:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Base struct {
|
2024-02-15 22:47:56 +00:00
|
|
|
Navbar []*Page
|
|
|
|
NavbarActive *Page
|
2024-02-12 10:22:14 +00:00
|
|
|
}
|