nomnom/layouts/partials/ingredients.html

11 lines
249 B
HTML

<div class="outer_ingredients">
<div id="ingredients">
<div class="ingred-title">Ingrédients</div>
<ul>
{{ range $.Param "ingredients" }}
<li>{{ with .qt }}{{ . }}{{ end }} {{ .name }}</li>
{{ end }}
</ul>
</div>
</div>