tera 0.10.3

Template engine based on Jinja2/Django templates
Documentation
<html>
  <head>
    <title>{{ product.name }}</title>
  </head>
  <body>
    <h1>{{ product.name }} - {{ product.manufacturer }}</h1>
    <p>{{ product.summary }}</p>
    <p>£{{ product.price * 1.20 }} (VAT inc.)</p>
    {% if not hide_reviews and friend_reviewed %}
      <p>Look at reviews from your friends {{ username }}</p>
      {% if number_reviews > 10 or show_more %}
        <p>See all reviews</p>
      {% elif number_reviews == 1 %}
        <p>Only one review</p>
      {% endif %}
    {% else %}
      {% if this_doesnt_exist %}
        Oh no!
      {% else %}
        <p>None of your friend reviewed this product</p>
      {% endif %}
    {% endif %}
    <button>Buy!</button>
  </body>
</html>