package views import "fmt" import "github.com/dominicf2001/comfychan/internal/util" type CatalogThreadPreview struct { Subject string Body string ThreadURL string MediaPath string } templ ThreadsCatalog(previews []CatalogThreadPreview) {
for _, preview := range previews {

{ preview.Subject }

@templ.Raw(util.EnrichPost(preview.Body))

}
}