Placeholder for the announcement content

This commit is contained in:
2022-08-29 18:30:47 -04:00
parent fac7d30c84
commit 68545546d4

View File

@ -0,0 +1,21 @@
>
{# Script Name Here #}
{%- macro getReport() -%}
<p>
Oh dear, I seem to have forgotten how to welcome you home!
</p>
{%- endmacro -%}
{# a macro that removes all newline characters, empty spaces, and returns formatted text #}
{%- macro cleanup(data) -%}
{%- for item in data.split("\n") if item | trim != "" -%}
{{ item | trim }} {% endfor -%}
{%- endmacro -%}
{# a macro to call all macros :) #}
{%- macro mother_of_all_macros() -%}
{{ getReport() }}
{%- endmacro -%}
{# Call the macro #}
{{- cleanup(mother_of_all_macros()) -}}