tera 1.3.1

Template engine based on Jinja2/Django templates
Documentation
1
2
3
4
5
6
7
8
9
10
11
{% macro input(label, type) %}
<label>
    {{ label }}
    <input type="{{type}}" />
</label>
{% endmacro input %}


{% macro hello_world2() %}
    {{ self::inexisting() }}
{% endmacro hello_world2 %}