archives_sidebar_links

in source/_plugins/generate_archives.rb [196:202]


    def archives_sidebar_links(archives)
      archives.sort.reverse.collect do |path, count|
          year, month = path.split('/').map(&:to_i)
          %Q{<li> <a href="/blog/archives/#{path}/"> 
      end
    end