recipe-site/_includes/ingredients.html

11 lines
288 B
HTML
Raw Normal View History

{%- assign tag = "h2" -%}
{%- if page.collection == "subrecipes" -%}
{%- assign tag = "h4" -%}
{%- endif -%}
<{{tag}}>Ingredients</{{tag}}>
<ul>
{% for item in page.ingredients -%}
2020-02-29 19:01:50 +00:00
<li>{{ item[0] }} {% if item[2] %} {{ item[2] }} of {% endif %} {{ item[1] }}</li>
{% endfor -%}
</ul>