Advertisement
Guest User

Untitled

a guest
Jan 27th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. (def statuses ["a" "b" "c"])
  2.  
  3.  
  4. (defroutes admin-routes
  5. (GET "/" [] (common/layout-narrow
  6. [:div [:h1 "Admin Page"]
  7. [:div
  8. [:h2 "Stories"]
  9. [:ul {:class "status"}
  10. [:li [:p "Add a new story"]]
  11. (for [status statuses] [:li [:p status]])
  12.  
  13. ]]] ))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement