12 lines
192 B
Plaintext
12 lines
192 B
Plaintext
|
{% layout 'layout' %}
|
||
|
|
||
|
<ul>
|
||
|
{% for todo in todos %}
|
||
|
<li>{% include 'todo', id:forloop.index %}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
|
||
|
{% block 'footer' %}
|
||
|
Copyright @ 2016, Harttle
|
||
|
{% endblock %}
|