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

{ a.Title }

Article image

{ a.Subtitle }

@templ.Raw(a.HTML)

Authors

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