Si post.published?
.post
/ Post stuff
De otra manera
.post.gray
/ Post stuff
He implementado esto con rails helper y parece feo.
= content_tag :div, :class => "post" + (" gray" unless post.published?).to_s do
/ Post stuff
Segunda variante:
= content_tag :div, :class => "post" + (post.published? ? "" : " gray") do
/ Post stuff
¿Hay una manera más simple y específica de haml?
UPD Específico de Haml, pero aún no es simple:
%div{:class => "post" + (" gray" unless post.published?).to_s}
/ Post stuff