File: a.html

package info (click to toggle)
jinja 1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,408 kB
  • ctags: 1,171
  • sloc: python: 6,438; ansic: 397; makefile: 74
file content (12 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
{% block block1 %}from template a.html{% endblock %}
{% block block2 %}from template a.html{% endblock %}
{% block block3 %}from template a.html{% endblock %}
{% block block4 %}
  nested block from template a.html
  {% block block5 %}
    contents of the nested block from a.html
    {% block block6 %}
      double nested block.
    {% endblock %}
  {% endblock %}
{% endblock %}