{{.name}}
{{$recipeImage := recipeImage .path}}
{{if ne $recipeImage ""}}
{{end}}
{{if ne (len .recipe.Metadata) 0}}
{{$m := .recipe.Metadata}}
{{$nameKey := .nameKey}}
{{range $k := sortedMetadataKeys $m}}
{{if ne $k $nameKey}}
- {{$k}}: {{index $m $k}}
{{end}}
{{end}}
{{end}}
{{recipeSteps .recipe .path}}
{{.ingredientsTitle}}
{{range .recipe.Steps}}
{{range .Ingredients}}
- {{.Name}} {{if ne .Amount.QuantityRaw ""}}({{.Amount.QuantityRaw}}{{if ne .Amount.Unit ""}} {{.Amount.Unit}}{{end}}){{end}}
{{end}}
{{end}}