9 lines
301 B
Common Lisp
9 lines
301 B
Common Lisp
(text "{% extends \"root.lisp\" %} {% block head %}")
|
|
(title
|
|
(text "{{ file_name }} - {{ name }}"))
|
|
(link ("rel" "icon") ("href" "/public/favicon.svg"))
|
|
(text "{% endblock %} {% block body %}")
|
|
(div
|
|
("class" "card container")
|
|
(p (text "{{ text|markdown|safe }}")))
|
|
(text "{% endblock %}")
|