mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
13 lines
221 B
Plaintext
13 lines
221 B
Plaintext
{% layout 'html.liquid' %}
|
|
|
|
<h1>{{ title | capitalize }}</h1>
|
|
<a>
|
|
{% if authed %} Sign out {{ username }}
|
|
{% else %} Sign in
|
|
{% endif %}
|
|
</a>
|
|
<ul>
|
|
{% for todo in todos %}
|
|
<p>{{ todo }}</p>
|
|
{% endfor %}
|
|
</ul> |