views:

78

answers:

2

We know about "extend" inheritance tag and inclusion tags. What about the combination of it, like an asp.net grid templates.

Like this:

{% template %}
   {% content top %}some html{% endcontent %}
   {% content bottom %}some html{% endcontent %}
{% endtemplate %}

UPD: Is there such tags already developed?

A: 

Currently, you can't mix override {% block %} tags that came from an {% include %} in the base template.

If #6646 gets committed, you'll be able to do this (for static {% include %} tags at least).

SmileyChris