Reorganize macros into separate component files

Replace a few old UI Module instances with  macros
This commit is contained in:
Andrew Croce
2018-08-03 10:35:04 -04:00
committed by richard-dds
parent a0082a2ae2
commit 64b40c0cf3
29 changed files with 198 additions and 298 deletions

View File

@@ -0,0 +1,9 @@
{% macro Modal() -%}
<div class='modal'>
<div class='modal__dialog' role='dialog' aria-modal='true'>
<div class='modal__body'>
{{ caller() }}
</div>
</div>
</div>
{%- endmacro %}