1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-08-08 15:05:26 +02:00

fix indentation

This commit is contained in:
Peter Savchenko 2020-05-09 05:37:14 +03:00
parent 207d2e556d
commit 362c4c999e
No known key found for this signature in database
GPG key ID: E68306B1AB0F727C

View file

@ -1,12 +1,12 @@
<div class="block-checklist"> <div class="block-checklist">
{% for item in items %} {% for item in items %}
<div class="block-checklist__item"> <div class="block-checklist__item">
{% if item.checked %} {% if item.checked %}
<span class="block-checklist__item-checkbox block-checklist__item-checkbox--checked"></span> <span class="block-checklist__item-checkbox block-checklist__item-checkbox--checked"></span>
{% else %} {% else %}
<span class="block-checklist__item-checkbox"></span> <span class="block-checklist__item-checkbox"></span>
{% endif %} {% endif %}
<div class="block-checklist__item-text">{{ item.text }}</div> <div class="block-checklist__item-text">{{ item.text }}</div>
</div> </div>
{% endfor %} {% endfor %}
</div> </div>