-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathtemplate3.clj
74 lines (61 loc) · 2.44 KB
/
template3.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
(ns tutorial.template3
(:require [net.cgrand.enlive-html :as html])
(:use [net.cgrand.moustache :only [app]]
[tutorial.utils
:only [run-server render-to-response render-request
maybe-content maybe-substitute page-not-found]]))
;; =============================================================================
;; The Templates Ma!
;; =============================================================================
(html/deftemplate base "tutorial/base.html"
[{:keys [title header main footer]}]
[:#title] (maybe-content title)
[:#header] (maybe-substitute header)
[:#main] (maybe-substitute main)
[:#footer] (maybe-substitute footer))
(html/defsnippet three-col "tutorial/3col.html" [:div#main]
[{:keys [left middle right]}]
[:div#left] (maybe-substitute left)
[:div#middle] (maybe-substitute middle)
[:div#right] (maybe-substitute right))
(html/defsnippet nav1 "tutorial/navs.html" [:div#nav1] [])
(html/defsnippet nav2 "tutorial/navs.html" [:div#nav2] [])
(html/defsnippet nav3 "tutorial/navs.html" [:div#nav3] [])
;; =============================================================================
;; Pages
;; =============================================================================
(defn viewa []
(base {:title "View A"
:main (three-col {})}))
(defn viewb []
(let [navl (nav1)
navr (nav2)]
(base {:title "View B"
:main (three-col {:left navl
:right navr})})))
(defn viewc
([] (viewc nil))
([action]
(let [navs [(nav1) (nav2)]
[navl navr] (if (= action "reverse") (reverse navs) navs)]
(base {:title "View C"
:main (three-col {:left navl
:right navr})}))))
(defn index
([] (base {}))
([ctxt] (base ctxt)))
;; =============================================================================
;; Routes
;; =============================================================================
(def routes
(app
[""] (render-request index)
["a"] (render-request viewa)
["b"] (render-request viewb)
["c" ] (render-request viewc)
["c" action] (render-request viewc action)
[&] page-not-found))
;; =============================================================================
;; The App
;; =============================================================================
(defonce ^:dynamic *server* (run-server routes))