public
Description: An extension that provides some useful blogging tags for the Radiant CMS
Homepage: http://seansantry.com/projects/blogtags/
Clone URL: git://github.com/santry/blogtags.git
blogtags / blog_tags_extension.rb
100644 9 lines (8 sloc) 0.287 kb
1
2
3
4
5
6
7
8
9
class BlogTagsExtension < Radiant::Extension
  version "0.1"
  description "Provides some useful blogging tags, like next and previous and time_ago_in_words"
  url "http://seansantry.com/svn/radiant/extensions/blogtags/trunk/"
  
  def activate
    Page.send :include, BlogTags
  end
end