1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
wagtail-website-2018-spike/templates/blocks/ordered-list.html
2018-07-26 08:33:06 +01:00

6 lines
84 B
HTML

<ol>
{% for item in value %}
<li>{{ item }}</li>
{% endfor %}
</ol>