summaryrefslogtreecommitdiff
path: root/pages/information/offer.fnl
diff options
context:
space:
mode:
authorunwox <me@unwox.com>2025-11-19 15:05:18 +0600
committerunwox <me@unwox.com>2025-11-19 16:24:40 +0600
commit4edb2d7d0f9b5d1ff730599d07e99aabb7f4b39c (patch)
tree6d70933acfad8bba2854d9598f34a6e3457eb391 /pages/information/offer.fnl
parent38b69c97b8eb95d79b88b23ed284e8cdcf643197 (diff)
(hopefully) final improvements before publishing
Diffstat (limited to 'pages/information/offer.fnl')
-rw-r--r--pages/information/offer.fnl21
1 files changed, 0 insertions, 21 deletions
diff --git a/pages/information/offer.fnl b/pages/information/offer.fnl
deleted file mode 100644
index 87d33d8..0000000
--- a/pages/information/offer.fnl
+++ /dev/null
@@ -1,21 +0,0 @@
-(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}