package main // menuComponent renders the symmetric two-column menu card. templ menuComponent(data MenuData) {
if data.Title != "" {

{ data.Title }

} if len(data.Courses) == 0 {

Add courses to start composing this menu.

} else {
    for _, course := range data.Courses {
  • { course.Name }

    if course.Description != "" {
    @templ.Raw(course.Description)
    }
    if course.Price != "" { { course.Price } }
  • }
}
}