Skip to content

Instantly share code, notes, and snippets.

@JustinTulloss
Created March 9, 2009 03:54
Show Gist options
  • Save JustinTulloss/76088 to your computer and use it in GitHub Desktop.
Save JustinTulloss/76088 to your computer and use it in GitHub Desktop.
(ns flockr.template
(:use compojure ))
(defn page
([title body]
(html [:html
(html [:head
(html [:title title])
]
(html [:body
(html [:div#menu "Menu"]
body)
]))
])))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment