1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{{ define "title" }}{{ .Title}} - Bread recipes | Alberto Restifo{{ end }}
{{ define "main" }}
<article>
<h1>{{ .Title }}</h1>
<ul>
{{ range $ingredient := .Params.ingredients }}
<li>{{ $ingredient.name }} ({{ $ingredient.quantity }}g)</li>
{{ end }}
</ul>
{{ .Content }}
</article>
{{ end }}