Jeśli post.published?
.post
/ Post stuff
Inaczej
.post.gray
/ Post stuff
Zaimplementowałem to z pomocnikiem rails i wydaje się brzydkie.
= content_tag :div, :class => "post" + (" gray" unless post.published?).to_s do
/ Post stuff
Drugi wariant:
= content_tag :div, :class => "post" + (post.published? ? "" : " gray") do
/ Post stuff
Czy jest bardziej prosty i specyficzny dla Hamla sposób?
UPD. Specyficzne dla Hamla, ale nadal nie jest proste:
%div{:class => "post" + (" gray" unless post.published?).to_s}
/ Post stuff