(import-macros {:compile-html HTML} :macros) (local templates (require :templates)) (local %page-title "Публичная оферта") (fn content [authenticated?] [(HTML [:aside {} (templates.header "/information" authenticated?)]) (HTML [:div {:class "content"} [:div {:class "back"} [:a {:href "/information"} "⟵ Обратно к контактной информации"]] [:section {} [:h2 {:class "mb-2"} %page-title] "test"]])]) (fn render [] (values 200 {} (templates.base (content) %page-title))) {: render}