15 lines
240 B
Plaintext
15 lines
240 B
Plaintext
{% capture content %}
|
|
{% if include.ordered %}
|
|
<ol>
|
|
{% else %}
|
|
<ul>
|
|
{% endif %}
|
|
{{ include.content }}
|
|
{% if include.ordered %}
|
|
</ol>
|
|
{% else %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endcapture %}
|
|
{% include blocks/_base.liquid type=list content=content %}
|