6adf42d457
- Block Alignments - Tables - Media with Links - Block Sizes
15 lines
282 B
Plaintext
15 lines
282 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 float=include.float align=include.align %}
|