blob: 725ba2b3030d452b797587f42bf579a70b3bf7d2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
(ns chef.pages.home
(:require [hiccup2.core :as html]
[ring.util.response :as ruresp]
[chef.pages.utils :as cputils]))
(defn handler [req]
(-> (cputils/gen-page "chef" [:i "Coming soon..."])
html/html
str
ruresp/response))
|