package account import "fmt" type MenuItem struct { name string href string } func getMenuItems() []MenuItem { return []MenuItem{ { name: "General", href: "general", }, { name: "Security", href: "security", }, { name: "Preferences", href: "preferences", }, } } templ SelectMenu(activePage string) { {{ menuItems := getMenuItems() page := fmt.Sprintf("{page:'%s'}", activePage) }}
}