Renamed some files, more CSS

This commit is contained in:
Simon Martens
2025-01-18 18:43:13 +01:00
parent 5715739e92
commit 611f7a0882
11 changed files with 98 additions and 44 deletions

View File

@@ -0,0 +1,12 @@
package controllers
import (
"github.com/Theodor-Springmann-Stiftung/kgpz_web/xmlmodels"
"github.com/gofiber/fiber/v2"
)
func GetPlace(kgpz *xmlmodels.Library) fiber.Handler {
return func(c *fiber.Ctx) error {
return c.Render("/ort/", nil)
}
}