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