{% macro header(id=False, oob=False) %}
{{ caller() }}
{% endmacro %} {% macro oob_header(id, child_id, row_macro) %} {% call header(id=id, oob=True) %} {% call header() %} {% from row_macro import header_row with context %} {{header_row()}}
{% endcall %} {% endcall %} {% endmacro %} {% macro index_row(id, row_macro) %} {% from '_types/root/_n/macros.html' import header with context %} {% set _caller = caller %} {% call header() %} {% from row_macro import header_row with context %} {{ header_row() }}
{{_caller()}}
{% endcall %} {% endmacro %}