Skip to content

Instantly share code, notes, and snippets.

@billdozr
Created July 29, 2011 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billdozr/1113502 to your computer and use it in GitHub Desktop.
Save billdozr/1113502 to your computer and use it in GitHub Desktop.
(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