- Added tests, tags and filters
[haanga.git] / examples / inheritance / section.html
blob6fd5f78f2d146a10e1bfe9c5b1d3f20f77d0659b
1 {% extends 'layout.html' %}
2 {% block title %} User Section | [{{ block.super }}] {% endblock %}
4 {% block header %}
5 <h1>Section of a website</h1>
6 {% endblock %}
8 {% block content %}
9 cesar
10 {% endblock content %}
12 {% block body %}
13 <h1>new Body</h1>
14 {{ block.super }}
15 {% endblock body %}