A powerful, easy to use template engine for Rust

Inspired by Jinja2 and Django templates

Get started

Easy to use

Designed from the ground up to be easy to use and provide good error messages.

Performant

Template compilation and rendering are measured in nanoseconds.

Familiar

Used to Jinja2, Django templates, Liquid or Twig? You will feel right at home.

<title>{% block title %}{% endblock title %}</title>
<ul>
{% for user in users -%}
  <li><a href="{{ user.url }}">{{ user.username }}</a></li>
{%- endfor %}
</ul>