self.find_years

in _plugins/tiered_archives_plugin.rb [35:38]


  def self.find_years(posts)
    posts.group_by {|post| post.date.year}.values.map {|year| year.group_by {|post| post.date.month}.values};
  end