blob: 21d21fd944731a8d92299761b3ede67827895ea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
(ns ctf-website.views.common
(:use [noir.core :only [defpartial]]
[hiccup.page-helpers :only [include-css html5]]))
(defpartial layout [& content]
(html5
[:head
[:title "ctf-website"]]
[:body
[:div#wrapper
content]]))
|