tera 1.0.0-beta.3

Template engine based on Jinja2/Django templates
Documentation
+++
+++

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