Created
July 29, 2011 09:20
-
-
Save billdozr/1113502 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn essay [slug] | |
(render-request | |
(temp/base {:title "Essay" | |
:navigation (temp/nav) | |
:content (temp/essay [(essays/fetch slug)])})) | |
(def core | |
(app | |
wrap-params | |
(wrap-static "src/alen_blog/static" ["/js" "/css"]) | |
["essays" slug] views/essay | |
[""] views/home | |
[&] page-not-found)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment