mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
8 lines
146 B
Plaintext
8 lines
146 B
Plaintext
{%header content: "welcome to liquid" | capitalize%}
|
|
|
|
<ul>
|
|
{% for todo in todos %}
|
|
<li>{{forloop.index}} - {{todo}}</li>
|
|
{% endfor %}
|
|
</ul>
|