tera 2.0.0-alpha.3

A template engine for Rust based on Jinja2/Django
Documentation
<html>
  <head>
    <title>{% block title %}{{ product.name }}{% endblock title %}</title>
  </head>
  <body>
    {%- block content -%}
        {%- for item in items -%}
            {%- if item.show -%}{{item.name}}{%- else -%}-{%- endif -%}
            Price: ${{ item.price * vat - (item.price * discount) | integer(base=10) }}

            {% filter markdown %}
            ## Description

            {{ page.description | safe }}
            {% endfilter %}

            {{ <cta title="Buy now"/> | safe }}

            {% include "sales.html" %}
        {%- else -%}
            No items.
        {%- endfor -%}
    {%- endblock -%}
  </body>
</html>