[go: up one dir, main page]

tera 0.10.3

Template engine based on Jinja2/Django templates
Documentation
1
2
3
4
5
6
7
8
9
<html>
  <head>
    <title>{% block title %}{{ product.name }}{% endblock title %}</title>
    {% block extrahead %}{% endblock extrahead %}
  </head>
  <body>
    <div>{% block content %}{% endblock content %}</div>
  </body>
</html>