{% macro friendly_tabs(headers, contents) -%}
{% for content in contents %}
{{ content.code }}
{% endfor %}
{%- endmacro %} {% if headers|length > 1 %} {{ friendly_tabs(headers, contents) }} {% else %} {% if friendly_config.single_block_as_tab %} {{ friendly_tabs(headers, contents) }} {% else %} {% for content in contents %}
{{ content.code }}
{% endfor %} {% endif %} {% endif %}