mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
7 lines
170 B
Plaintext
7 lines
170 B
Plaintext
{% layout 'html.liquid' %}
|
|
{%header title | capitalize%}
|
|
<ul>
|
|
{% for todo in todos %}
|
|
{% render 'todo.liquid' with todo, index: forloop.index%}
|
|
{% endfor %}
|
|
</ul> |