Add HTML tag

This commit is contained in:
oakes
2014-04-01 17:09:54 -04:00
parent 72bc408bd7
commit 38c797b19c

View File

@@ -62,15 +62,16 @@
(defn create-file
[parsed-files name content]
(html [:head
[:title name]
[:link {:rel "stylesheet" :href "highlight.css"}]
[:link {:rel "stylesheet" :href "main.css"}]]
[:body
(sidebar parsed-files)
content
[:script {:src "highlight.js"}]
[:script {:src "main.js"}]]))
(html [:html
[:head
[:title name]
[:link {:rel "stylesheet" :href "highlight.css"}]
[:link {:rel "stylesheet" :href "main.css"}]]
[:body
(sidebar parsed-files)
content
[:script {:src "highlight.js"}]
[:script {:src "main.js"}]]]))
(defn copy-from-res
[dir file-name]