A pastebin for markdown pages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
485 B

(ns NoteHub.views.common
(:use [noir.core :only [defpartial]]
[hiccup.page-helpers :only [include-css html5]]))
14 years ago
(use 'cssgen)
(defpartial layout [& content]
(html5
[:head
[:title "NoteHub"]
14 years ago
[:style {:type "text/css"}
(css (rule "h1" :font-family "Impact"))]
]
[:body
14 years ago
; TODO: replace wrapper with smth
[:div#wrapper
content]]))