0.0.2 • Published 6 years ago

wytry v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Usage

See the website.

Why colon

  • 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.

Thanks

  • syntax inspired by Vue

License

Licensed under the MIT License