Skip to content

Instantly share code, notes, and snippets.

@augustl
Created January 2, 2012 21:42
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 augustl/1552241 to your computer and use it in GitHub Desktop.
Save augustl/1552241 to your computer and use it in GitHub Desktop.
(defn build-head [head-extra]
[:head
[:title "Buster.JS"]
(include-css "/css/screen.css")
(vec (flatten head-extra))
]
)
(defn build-head-2 [head-extra]
[:head
[:title "Buster.JS"]
(include-css "/css/screen.css")
head-extra
]
)
(defn build-head-3 [head-extra]
(def base
[:head
[:title "Buster.JS"]
(include-css "/css/screen.css")])
(concat base head-extra))
(defn build-head-4 [head-extra]
[:head
[:title "Buster.JS"]
(include-css "/css/screen.css")
~@head-extra
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment