ถ้า post.published?
.post
/ Post stuff
มิฉะนั้น
.post.gray
/ Post stuff
ฉันใช้สิ่งนี้กับผู้ช่วยรางและดูเหมือนว่าน่าเกลียด
= content_tag :div, :class => "post" + (" gray" unless post.published?).to_s do
/ Post stuff
ตัวแปรที่สอง:
= content_tag :div, :class => "post" + (post.published? ? "" : " gray") do
/ Post stuff
มีวิธีที่ง่ายขึ้นและเฉพาะเจาะจงมากขึ้น haml?
UPD เฉพาะ Haml แต่ก็ไม่ง่าย:
%div{:class => "post" + (" gray" unless post.published?).to_s}
/ Post stuff