Skip to content

Instantly share code, notes, and snippets.

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