diff options
Diffstat (limited to 'src/chef/utils.clj')
-rw-r--r-- | src/chef/utils.clj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/chef/utils.clj b/src/chef/utils.clj index e2725ce..22797cb 100644 --- a/src/chef/utils.clj +++ b/src/chef/utils.clj @@ -14,7 +14,8 @@ [:link {:rel :stylesheet :href "/static/style.css"}] [:meta {:http-equiv "content-type" :content "text/html; charset=utf-8"}] [:meta {:name "robots" :content "noindex,nofollow"}]] - (apply conj [:body] content [[:script {:src "/static/htmx.js"}]])]) + (apply conj [:body] content [[:script {:src "/static/htmx.js"}] + [:script {:src "/static/hyperscript.js"}]])]) (defmacro auth-only [request & body] `(if (some? (get-in ~request [:session :oauth-token])) |