vulpine.house/themes/clean/layouts/_default/recipe.html

16 lines
349 B
HTML

{{ define "main" }}
<h1>{{.Title}}</h1>
{{ range .Recipes }}
<section class="recipe">
<h2>{{.Name}}</h2>
<p><b>Ingredients:</b></p>
<ul>{{ range .Ingredients }}
<li>{{.}}</li>{{ end }}
</ul>
<p><b>Directions:</b></p>
<ol>{{ range .Directions }}
<li>{{.}}</li>{{ end }}
</ol>
</section>
{{ end }}
{{ end }}