tera 0.10.1

Template engine based on Jinja2/Django templates
Documentation
{% import "macros.html" as macros %}
<h1>Hello</h1>

{% if my_var %}
    {{ my_var }}
{% else %}
    Sorry, my_var isn't defined.
{% endif %}

{% if not show_all %}
    See more
{% endif %}
{{ "{{ hey }}" }}

{% block content %}
{% endblock content %}

{{ macros::hello_world(greeting="世界") }}