【发布时间】:2013-03-10 21:24:05
【问题描述】:
我发现我无法在黑色应用程序中加载 CSS。 也不能改css源文件,是不是路由有问题?
(ns my-web.views.common
(:use noir.core
hiccup.core
hiccup.page-helpers
))
(defpartial layout [& content]
(html5
[:head
[:title "website from noir"]
(include-css "/css/reset.css")]
[:body
[:div#idnumber content]]))
【问题讨论】: