Update home config
This commit is contained in:
parent
44af84abe9
commit
8c4de32246
9 changed files with 30 additions and 18 deletions
|
|
@ -29,21 +29,17 @@ var (
|
|||
_ component.Routeable = (*Home)(nil)
|
||||
)
|
||||
|
||||
func (*Home) Routes() component.Routes {
|
||||
func (home *Home) Routes() component.Routes {
|
||||
return component.Routes{
|
||||
Prefix: "/",
|
||||
MatchAllDomains: true,
|
||||
CSRF: false,
|
||||
|
||||
MenuTitle: "WissKI Distillery",
|
||||
MenuTitle: home.Config.Home.Title,
|
||||
MenuPriority: component.MenuHome,
|
||||
}
|
||||
}
|
||||
|
||||
var (
|
||||
menuHome = component.MenuItem{Title: "WissKI Distillery", Path: "/"}
|
||||
)
|
||||
|
||||
func (home *Home) HandleRoute(ctx context.Context, route string) (http.Handler, error) {
|
||||
// generate a default handler
|
||||
dflt, err := home.loadRedirect(ctx)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue