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