diff --git a/handler/routes.go b/handler/routes.go index a7c5983..166e869 100644 --- a/handler/routes.go +++ b/handler/routes.go @@ -812,6 +812,9 @@ func ApplyServerConfig(db store.IStore, tmplBox *rice.Box) echo.HandlerFunc { // AboutPage handler func AboutPage() echo.HandlerFunc { return func(c echo.Context) error { - return c.Render(http.StatusOK, "about.html", map[string]interface{}{}) + return c.Render(http.StatusOK, "about.html", map[string]interface{}{ + "baseData": model.BaseData{Active: "about", CurrentUser: currentUser(c)}, + }) } } +