nomnom/layouts/partials/ingredients.html

28 lines
704 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>
{{ with .article -}}
{{ . -}}
{{- if substr . -1 1 | eq "'" -}}{{ else }} {{ end -}}
{{/* ^^^ No space only if article ends with an apostrophe */}}
{{- end -}}
<span class="ingred-name">{{ .name }}</span>
</li>
{{ end }}
</ul>
</div>
</div>