{%for section in data%} {%set section_loop = loop%}

{{section["section_title"]}}

{{section["section_text"]}}

{% if section["networks"]|length != 0 %} {%for n in section["networks"]%} {%set id = "graph_" ~ section_loop.index ~ "_" ~ loop.index %}

{{n["title"]}}

{{n["caption"]}}

{%set nodes = n["nodes"] | tojson %} {%set links = n["links"] | tojson %} {%set network = n | tojson %}
{%endfor%}
{%endif%} {% if section["tables"]|length != 0 %} {%for e in section["tables"]%} {%set id = "table_" ~ section_loop.index ~ "_" ~ loop.index %}

{{e["title"]}}

{% for th in e["headers"] %} {% endfor %} {%for row in e["rows"]%} {% for th in e["headers"] %} {% endfor %} {% endfor %}
{{ e["caption"]}}
{{ th }}
{{ row[th]}}
{%endfor%}
{%endif%} {% if section["figures"]|length != 0 %} {%for e in section["figures"]%} {%set id = "table_" ~ section_loop.index ~ "_" ~ loop.index %}

{{e["title"]}}

{{ e['data'] | safe }} {%endfor%}
{%endif%}
{%endfor%}