Fixing Spelling errors...

This commit is contained in:
Jeffrey Stone 2022-01-26 08:56:14 -05:00
parent 238ccee458
commit 9c93f05333
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
> >
{# Daily Briefing #} {# Daily Briefing #}
{%- macro getGretting() -%} {%- macro getGreeting() -%}
{% if now().strftime('%H')|int < 12 %} {% if now().strftime('%H')|int < 12 %}
Good morning. Good morning.
{% elif now().strftime('%H')|int >= 12 and now().strftime('%H')|int < 17 %} {% elif now().strftime('%H')|int >= 12 and now().strftime('%H')|int < 17 %}
@ -29,7 +29,7 @@
{# a macro to call all macros :) #} {# a macro to call all macros :) #}
{%- macro mother_of_all_macros() -%} {%- macro mother_of_all_macros() -%}
{{ getGretting() }} {{ getGreeting() }}
{{ getDoorStatus()}} {{ getDoorStatus()}}
{%- endmacro -%} {%- endmacro -%}