<div class="{{ self.overlay_class() }}"></div>
<aside class="{{ self.drawer_class() }}" role="dialog" aria-modal="true" aria-labelledby="wf-drawer-title">
<div class="wf-modal-head">
<span class="wf-modal-title" id="wf-drawer-title">{{ title }}</span>
<button class="wf-icon-btn ghost" type="button" aria-label="Close">×</button>
</div>
<div class="wf-modal-body">{{ body_html }}</div>
{%- match footer_html -%}
{%- when Some with (html) -%}
<div class="wf-modal-foot">{{ html }}</div>
{%- when None -%}
{%- endmatch -%}
</aside>