fluffle/app/templates_src/doc.lisp

13 lines
559 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 }}")))
(link ("rel" "stylesheet") ("href" "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/default.min.css"))
(script ("src" "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"))
(script (text "hljs.highlightAll();"))
(text "{% endblock %}")