blob: 72d33fd5f7774564cfafa0eda1a5d4566e8dc15f (
plain)
1
2
3
4
5
6
7
8
|
(ns chef.pages.utils)
(defn gen-page [title & content]
[:html
[:head
[:meta {:name "viewport" :content "width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"}]
[:title title]]
(apply conj [:body] content [[:script {:src "/static/htmx.js"}]])])
|