recipe-site/_includes/ingredients.html
Lynne 5f19345653
Some checks failed
continuous-integration/drone/push Build is failing
use JS to show/hide subrecipes
2020-03-01 16:47:33 +10:00

10 lines
290 B
HTML

{%- assign tag = "h2" -%}
{%- if page.collection == "subrecipes" -%}
{%- assign tag = "h4" -%}
{%- endif -%}
<{{tag}}>Ingredients</{{tag}}>
<ul>
{% for item in page.ingredients -%}
<li>{{ item[0] }} {%- if item[2] %} {{ item[2] }} of {% endif -%} {{ item[1] }}</li>
{% endfor -%}
</ul>