{% macro test(name, age) %}

{{ name }}

{{ age }} {% endmacro %} {% macro header(title, image) %} {% endmacro %} {% macro col_2_table(title, dict) %}
{{ title }}
{% for name, value in dict.items() %}
{{ name }}
{{ value }}
{% endfor %}
{% endmacro %} {% macro section(title, html) %}

{{ title }}

{{ html }}
{% endmacro %} {% macro bokeh_plots(divs) %}
{% for name, div in divs.items() %}
{{ div }}
{% endfor %}
{% endmacro %} {% macro image(context) %}
{% endmacro %} {% macro loop_image_datasources(images) %}
{% for img in images %}
{% if img['text'] %}

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse aliquet diam quis purus congue, in porttitor mauris bibendum.

{% endif %}
{% endfor %}
{% endmacro %} {% macro tabs(tab_names, sheets) %}
{% for tab_name, uuid in names_uuids %} {% if loop.index0 == 0 %} {% set active = 'show active' %} {% else %} {% set active = '' %} {% endif %}
{% set rowloop = loop %} {% for data, fn in sheets %}
{{ fn(data[rowloop.index0]) }}
{% endfor %}
{% endfor %}
{% endmacro %} {% macro datatable(data) %} {% set datatable_uuid = 'random' | tag_id %}
{% endmacro %}