Minimal, concise and blazing fast template engine.
Server side render is coming.
See the website.
siwg
,art-template
,doT
...
<h1>{{ title }}</h1>
<ul>
{% for author in authors %}
<li{% if loop.first %} class="first"{% endif %}>{{ author }}</li>
{% endfor %}
</ul>
colon
<h1>{{ title }}</h1>
<ul>
<li :each="(author, index) in authors" :class="[index == 0 ? 'first' : '']">{{ author }}</li>
</ul>
colon
has a more concise template syntax.
- syntax inspired by Vue
Licensed under the MIT License