mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-04-29 06:48:16 +00:00
12 lines
252 B
YAML
12 lines
252 B
YAML
>-
|
|
|
|
{% set current_hour = now().strftime('%H')|int %}
|
|
|
|
{%- if current_hour < 12 and current_hour > 6 -%}
|
|
Good morning!
|
|
{%- elif current_hour >= 12 and current_hour < 17 -%}
|
|
Good afternoon!
|
|
{%- else -%}
|
|
Good evening!
|
|
{%- endif -%}
|