nomnom/layouts/partials/ingredients.html

14 lines
331 B
HTML
Raw Normal View History

<div class="outer_ingredients">
<div id="ingredients">
<div class="ingred-title">Ingrédients</div>
<ul>
{{ range $.Param "ingredients" }}
2019-05-11 20:53:33 +02:00
<li>
<span class="ingred-qt">{{ with .qt }}{{ . }}{{ end }}</span>
<span class="ingred-name">{{ .name }}</span>
</li>
{{ end }}
</ul>
</div>
</div>