block_helper.rb 198 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 module BlockHelper def block_title(title) tag_class = 'block-title' tag_class += ' empty' if title.empty? content_tag 'h3', content_tag('span', title), :class => tag_class end end