tawny/app/templates_src/index.lisp

12 lines
447 B
Common Lisp
Raw Normal View History

2025-08-20 16:19:08 +00:00
(text "{% extends \"root.lisp\" %} {% block head %}")
2025-09-01 20:17:32 -04:00
(text "{% if user -%}")
(meta ("http-equiv" "refresh") ("content" "0; /chats"))
(text "{% else %}")
(meta ("http-equiv" "refresh") ("content" "0; {{ config.service_hosts.tetratto|safe }}"))
(text "{%- endif %}")
2025-08-20 16:19:08 +00:00
(text "{% endblock %} {% block body %}")
(div
("class" "card")
2025-09-01 20:17:32 -04:00
(a ("href" "{{ config.service_hosts.tetratto }}") (text "Sending you elsewhere...")))
2025-08-20 16:19:08 +00:00
(text "{% endblock %}")