5
Haml에서 조건이 참인 경우 클래스 추가
만약 post.published? .post / Post stuff 그렇지 않으면 .post.gray / Post stuff 나는 이것을 rails helper로 구현했으며 추악한 것처럼 보인다. = content_tag :div, :class => "post" + (" gray" unless post.published?).to_s do / Post stuff 두 번째 변형 : = content_tag :div, :class => "post" + (post.published? ? "" : …