5
Anexar classe se a condição for verdadeira no Haml
E se post.published? .post / Post stuff De outra forma .post.gray / Post stuff Eu implementei isso com o Rails Helper e parece feio. = content_tag :div, :class => "post" + (" gray" unless post.published?).to_s do / Post stuff Segunda variante: = content_tag :div, :class => "post" + (post.published? ? …