Stencil is an open source template language created in 2018 by Kyle Fuller.
#417on PLDB | 6Years Old |
git clone https://github.com/stencilproject/Stencil
Stencil is a simple and powerful template language for Swift. It provides a syntax similar to Django and Mustache.
There are {{ articles.count }} articles.
<ul>
{% for article in articles %}
<li>{{ article.title }} by {{ article.author }}</li>
{% endfor %}
</ul>