Files
liquidjs/demo/esm/todolist.liquid
T

7 lines
178 B
Plaintext

{% layout 'html.liquid' %}
<h1>{% include "hello-liquid" %}</h1>
<ul>
{% for todo in todos %}
{% render 'todo.liquid' with todo, index: forloop.index%}
{% endfor %}
</ul>