# All files in the 'lib' directory will be loaded # before nanoc starts compiling. include Nanoc::Helpers::LinkTo include Nanoc::Helpers::Rendering include Nanoc::Helpers::Blogging include Nanoc::Helpers::Tagging module BlogHelper def get_pretty_date(post) attribute_to_time(post[:created_at]).strftime('%B %-d, %Y') end def get_post_start(post) content = post.compiled_content if content =~ /\s\s/ content = content.partition('').first + "
" end return content end end include BlogHelper