MangoRecipe/Source/Webserver/views/index.liquid

10 lines
188 B
Plaintext
Raw Normal View History

2022-10-18 12:30:12 +02:00
{% layout 'layout' %}
<ul>
{% for todo in todos %}
2022-10-19 13:07:30 +02:00
<li>{% include 'todo', id:forloop.index %}</li>
2022-10-18 12:30:12 +02:00
{% endfor %}
</ul>
2022-10-19 13:07:30 +02:00
{% block 'footer' %} Copyright @ 2016, Harttle {% endblock %}