package main import ( "github.com/gosimple/slug" "path" ) templ headerComponent(title string) { { title } } templ contentComponent(title string, body templ.Component) {

{ title }

@body
} templ contentPage(title string, body templ.Component) { @headerComponent(title) @contentComponent(title, body) } templ indexPage(posts []Post) { @headerComponent("My Blog")

My Blog

for _, post := range posts {
{ post.Title }
} }