Wenn post.published?
.post
/ Post stuff
Andernfalls
.post.gray
/ Post stuff
Ich habe dies mit Rails Helper implementiert und es scheint hässlich.
= content_tag :div, :class => "post" + (" gray" unless post.published?).to_s do
/ Post stuff
Zweite Variante:
= content_tag :div, :class => "post" + (post.published? ? "" : " gray") do
/ Post stuff
Gibt es einen einfacheren und hamlspezifischeren Weg?
UPD. Haml-spezifisch, aber immer noch nicht einfach:
%div{:class => "post" + (" gray" unless post.published?).to_s}
/ Post stuff