package views import ( "time" "github.com/rramiachraf/dumb/data" ) templ ArticlePage(a data.Article) { @layout(a.Title) {
Article image

Authored By

for _, author := range a.Authors {
{ author.Name } - { author.Role } { author.About }
}

{ a.Title }

{ a.Subtitle }

@templ.Raw(a.HTML)
} }