nomnom/layouts/partials/ingredients.html

23 lines
514 B
HTML

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