tera 0.10.3

Template engine based on Jinja2/Django templates
Documentation
<html>
  <head>
    <title>{{ product.name | upper | trim }}</title>
  </head>
  <body>
    <h1>{{ product.name | trim }} - {{ product.manufacturer | trim | truncate(length=4) }}</h1>
    <span>{{ number_reviews | round(method="floor") }} review{{ number_reviews|pluralize(suffix="es") }}</span>
  </body>
</html>