package pages import ( "fmt" . "recipe_book/pkg/db" ) templ IngredientsIndex(foods []Food) {

Ingredients

Create new ingredient

for _, f := range foods { }
Name Cals Carbs Protein Fat Sugar
{ f.Name } { fmt.Sprint(f.Cals) } { fmt.Sprint(f.Carbs) } { fmt.Sprint(f.Protein) } { fmt.Sprint(f.Fat) } { fmt.Sprint(f.Sugar) }
}