2020-02-29 18:07:36 +00:00
|
|
|
{%- assign tag = "h2" -%}
|
|
|
|
{%- if page.collection == "subrecipes" -%}
|
|
|
|
{%- assign tag = "h4" -%}
|
|
|
|
{%- endif -%}
|
2020-02-29 18:05:06 +00:00
|
|
|
<{{tag}}>Ingredients</{{tag}}>
|
2020-03-01 08:38:27 +00:00
|
|
|
<ul class='ingredients'>
|
2020-02-29 18:07:36 +00:00
|
|
|
{% for item in page.ingredients -%}
|
2020-03-01 08:43:34 +00:00
|
|
|
<li class='{% if item[3] %}optional{% endif %}'>{% if item[0][0] %}{{ item[0][0] }} to {{ item[0][1] }}{% else %}{{ item[0] }}{% endif %} {%- if item[2] %} {{ item[2] }} of {%- endif %} {{ item[1] }}</li>
|
2020-02-29 18:07:36 +00:00
|
|
|
{% endfor -%}
|
2020-02-29 18:05:06 +00:00
|
|
|
</ul>
|