Skip to content

Instantly share code, notes, and snippets.

@aamedina
Created September 25, 2013 18:11
Show Gist options
  • Select an option

  • Save aamedina/6703656 to your computer and use it in GitHub Desktop.

Select an option

Save aamedina/6703656 to your computer and use it in GitHub Desktop.
(deftemplate accounts-view
[accounts]
[:h1 "This is a simple template Brendan!"]
[:h2 "Accounts go here...!"]
(for [a accounts]
[:div.account-info
[:h2 (:name a)]
[:p (str a)]]))
(append! (sel1 :#content) (accounts-view @(account)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment