package home import "gitea.henriburau.de/haw-lan/cod4watcher/views/layouts" import "gitea.henriburau.de/haw-lan/cod4watcher/models" import "gitea.henriburau.de/haw-lan/cod4watcher/views/components" templ Index(captures []models.Capture) { @layouts.Base() { for _, capture := range captures { @components.CaptureCard(capture) } } }