나는 인터넷에서 매우 기본적인 웹 페이지를 발견했으며, 이제 더 좋은 페이지를 만들 수 있도록 명백한 일을하고 CSS를 추가하고 싶습니다.Compojure에서 CSS 시작하기?
- 다른 스타일 시트뿐만 아니라 jQuery도 어떻게 포함시킬 수 있습니까?
- 인라인 CSS를 포함하려면 어떻게해야합니까? 텍스트 정렬 : 가운데 예를 들어 빠른 변경을 시도해 볼 수 있습니까?
정기적으로 jQuery를 포함 :
이 에게
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"/>
이 형식없이
기본 안녕하세요 서버 : (다른 사람까지 빠르게 실행할 수 있도록 정적 라우팅 수정을 포함하도록 업데이트하는)
(ns hello-world
(:use compojure))
(defn index
[request]
(html
[:h1 "Hello World"]
[:p "This is ugly with CSS!"])
)
(defn hello
[request]
(html ""
[:title "A very long title"]
[:div.comment
[:h1 "Hello's Page"]
[:p "This would look better with some CSS formatting!"]]
))
(defroutes greeter
(GET "/" index)
(GET "/h" hello)
(GET "/*"
(or (serve-file "/opt/compojure/www/public" (params :*)) ;; This is needed to find CSS and js files
:next))
(ANY "*"
(page-not-found) ;; 404.html is in /opt/compojure/www/public/404.html
))
(run-server {:port 9090}
"/*" (servlet greeter))
이것은 오래된 것입니다. – hawkeye