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/blog_tags.git
blog_tags / blog_tags_extension.rb
100644 9 lines (8 sloc) 0.262 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://github.com/santry/blog_tags/"
  
  def activate
    Page.send :include, BlogTags
  end
end