diff options
| author | Bobby <[email protected]> | 2026-01-20 14:02:34 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-01-20 14:02:34 +0530 |
| commit | 7fee36b4fbae90dacdecb917e262ad58927fe746 (patch) | |
| tree | 3739af9bf8d2e78c6536a7dfa24ce391abb90ff1 /router | |
| parent | 61d5f45189a40621bceeb14c6646031dd15ab6c2 (diff) | |
| download | cafe-7fee36b4fbae90dacdecb917e262ad58927fe746.tar.xz cafe-7fee36b4fbae90dacdecb917e262ad58927fe746.zip | |
Add Tailwind CSS and HTMX integration and implement custom template tags
Diffstat (limited to 'router')
| -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 f453ba2..8c5faca 100644 --- a/router/base.go +++ b/router/base.go @@ -11,6 +11,6 @@ func init() { urls.SetNamespace("") urls.Path(types.GET, "/", func(c *fiber.Ctx) error { - return c.SendString("Welcome to Shifoo's Cafe") + return c.Render("pages/home", fiber.Map{}) }, "home") } |
