mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
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 %}
|