14 lines
343 B
Plaintext
14 lines
343 B
Plaintext
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)
|
|
}
|
|
}
|
|
}
|