package pages import "gosten/model" templ notfound(uri string) { @content() { } } templ index(user string) { @content() { Logged in with user: {user} } } templ recur(rows []model.RecurExpense) { @content() { } } templ categories(rows []model.Category) { @content() { } }