12 lines
273 B
HTML
12 lines
273 B
HTML
{%- if page.method | size != 0 %}
|
|
{%- assign tag = "h2" -%}
|
|
{%- if page.collection == "subrecipes" -%}
|
|
{%- assign tag = "h4" -%}
|
|
{%- endif -%}
|
|
<{{tag}}>Method</{{tag}}>
|
|
<ol>
|
|
{% for item in page.method -%}
|
|
<li>{{ item }}</li>
|
|
{% endfor -%}
|
|
</ol>
|
|
{%- endif -%}
|