fluffle/app/templates_src/root.lisp

29 lines
1.1 KiB
Common Lisp
Raw Normal View History

2025-07-20 02:49:01 -04:00
(text "{%- import \"components.lisp\" as components -%}")
(text "<!doctype html>")
(html
("lang" "en")
(head
(meta ("charset" "UTF-8"))
(meta ("name" "viewport") ("content" "width=device-width, initial-scale=1.0"))
(meta ("http-equiv" "X-UA-Compatible") ("content" "ie=edge"))
(link ("rel" "icon") ("href" "/public/favicon.svg"))
2025-07-20 03:24:55 -04:00
(link ("rel" "stylesheet") ("href" "{{ tetratto }}/css/utility.css?v={{ build_code }}"))
(link ("rel" "stylesheet") ("href" "/public/style.css?v={{ build_code }}"))
2025-07-20 02:49:01 -04:00
(meta ("name" "theme-color") ("content" "#fbc27f"))
(meta ("name" "description") ("content" "{{ name }}"))
(meta ("property" "og:type") ("content" "website"))
(meta ("property" "og:site_name") ("content" "{{ name }}"))
2025-07-20 03:24:55 -04:00
(script ("src" "/public/app.js?v={{ build_code }}") ("defer"))
2025-07-20 02:49:01 -04:00
(text "{% block head %}{% endblock %}"))
(body
(article
("class" "content_container flex flex-col")
("id" "page")
(ul ("id" "messages"))
(text "{% block body %}{% endblock %}"))))