diff options
| author | Bobby <[email protected]> | 2026-02-11 12:48:01 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-02-11 12:48:01 +0530 |
| commit | 2c567dd96712a887b42cf4df3bdaa9f5f2b51a43 (patch) | |
| tree | 82c408110dff2898e64688111b08c1d79043d247 /router/base.go | |
| parent | 519a4a81bc3ae4738835a1fcb7cfaf72a06bf13b (diff) | |
| download | cafe-2c567dd96712a887b42cf4df3bdaa9f5f2b51a43.tar.xz cafe-2c567dd96712a887b42cf4df3bdaa9f5f2b51a43.zip | |
Refactor homepage and error templates, add service worker and manifest for PWA support
Diffstat (limited to 'router/base.go')
| -rw-r--r-- | router/base.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/router/base.go b/router/base.go index b178d50..aaeaad3 100644 --- a/router/base.go +++ b/router/base.go @@ -12,6 +12,6 @@ func init() { urls.SetNamespace("") urls.Path(types.GET, "/", func(c *fiber.Ctx) error { - return shortcuts.Render(c, "pages/home", nil) + return shortcuts.Render(c, "pages/main", fiber.Map{}) }, "home") } |
