pastry/app/templates_src/index.lisp
2025-08-24 23:40:37 +00:00

12 lines
378 B
Common Lisp

(text "{% extends \"root.lisp\" %} {% block head %}")
(title
(text "{{ name }}"))
(meta ("property" "og:title") ("content" "{{ name }}"))
(meta ("property" "twitter:title") ("content" "{{ name }}"))
(link ("rel" "icon") ("href" "/public/favicon.svg"))
(text "{% endblock %} {% block body %}")
(div
("class" "card")
(h1 (text "{{ name }}")))
(text "{% endblock %}")