All pastes #2102549 Raw Edit

Miscellany

public text v1 · immutable
#2102549 ·published 2012-01-12 11:27 UTC
rendered paste body
{% macro bigblock() %}

<div>{% block title %}{% endblock %}</div>
<div>
{% block content %}
</div>

{% endmacro %}


...

{% call bigblock() %}

{%block title%}Something{%endblock%}
{%block content%}something more{%endblock%}

{% endcall %}