{% macro information_col(title, class="") %}

{{ title }}

{{caller()}}

{% endmacro %} {% macro information_section(title = "") %}
{% if title %}

{{ title }}

{% endif %}
{{caller()}}
{% endmacro %} {% macro information_title_with_button(title, class="") %}

{{ title }}

{{caller("button")}}
{{caller()}} {% endmacro %} {% macro information_accordion(title) %} {# This allows us to call the caller() of this macro inside a call() #} {% set current_caller=caller %} {% call(slot) information_title_with_button(title, "fr-pb-3w fr-mb-3w border-bottom border-default-grey") %} {% if slot == "button" %} {{current_caller("button")}} {% else %} {{current_caller()}} {% endif %} {% endcall %} {% endmacro %}