hiccup

How Can I Output an HTML Comment in Compojure/Hiccup?

I'd like my program to output the following HTML: <!--[if lt IE 8]><link rel="stylesheet" href="../blueprint/ie.css" type="text/css" media="screen, projection"><![endif]--> Is there a way to output html comment literals with Hiccup? ...

Change a div color in hiccup

Is there a way I can set a div background color in hiccup? Here is what I tried so far, with no result: [:div {:background-color "#003366"} (escape-html rest)] In the html, I see <div background-color="#663366"> which I do not believe is the correct format for color. Is there a way to do this in hiccup? ...