mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-05-09 10:14:41 +00:00
10 lines
247 B
YAML
10 lines
247 B
YAML
>-
|
|
|
|
{%- if now().strftime('%H')|int < 12 and now().strftime('%H')|int > 6 -%}
|
|
Good morning!
|
|
{%- elif now().strftime('%H')|int >= 12 and now().strftime('%H')|int < 17 -%}
|
|
Good afternoon!
|
|
{%- else -%}
|
|
Good evening!
|
|
{%- endif -%}
|