{% macro modal( id, title, component="modal", close_label="Close", dialog_scrollable=false, remote_content=false, inline_hidden_style=false, managed=true, root_tag="div", root_class=none, title_tag="h5", title_id=none, close_button_class="om-close-button", close_button_id=none, close_icon_class=none, body_class=none, footer=none, footer_class=none, footer_close_label=none, dialog_class=none, hidden=true ) %} {% set resolved_root_tag = "section" if root_tag == "section" else "div" %} {% set resolved_title_tag = "h2" if title_tag == "h2" else "h5" %} {% set resolved_title_id = title_id | default(id ~ "-title", true) %} <{{ resolved_root_tag }} class="om-modal{% if root_class is not none %} {{ root_class }}{% endif %}" id="{{ id }}" data-om-component="{{ component }}" {% if managed %}data-om-modal-managed="true"{% endif %} tabindex="-1" role="dialog" aria-hidden="true" aria-labelledby="{{ resolved_title_id }}" {% if hidden %}hidden{% endif %} {% if inline_hidden_style %}style="display: none;"{% endif %} >