Add some inspirational quotes to our briefings

This commit is contained in:
2023-04-19 21:11:52 -04:00
parent f944d1d1fe
commit 6da7f5792e
5 changed files with 118 additions and 5 deletions

View File

@ -2,7 +2,7 @@
{# Nightly Briefing #}
{%- macro getReport() -%}
{% from 'speech.jinja' import greeting, dadjoke %}
{% from 'time.jinja' import input_datetime_12hr, read_time_from_calendar %}
{% from 'time.jinja' import input_datetime_12hr, read_time_from_calendar, inspirational_quote %}
<p>
{{ greeting() }}
</p>
@ -276,6 +276,10 @@
{% endif %}
</p>
<p>
One last thing before I go. {{ inspirational_quote() }}
</p>
{%- endmacro -%}
{# a macro that removes all newline characters, empty spaces, and returns formatted text #}