nomnom/layouts/partials/ingredients.html

18 lines
430 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 | markdownify }}
{{- with .name }} {{ . | markdownify }}
{{- else }} portions{{ end -}}
</div>
{{- end }}
{{ with $.Param "ingredients" -}}
{{ partial "ingredients_ul.html" . }}
{{- end }}
</div>
</div>