main_block.rb 211 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 class MainBlock < Block def self.description _('Block for main content (i.e. your articles, photos, etc)') end def content(main_content = nil) main_content end def main? true end end