Skip to content

Instantly share code, notes, and snippets.

@komasaru
Created February 1, 2013 07:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save komasaru/4690016 to your computer and use it in GitHub Desktop.
Save komasaru/4690016 to your computer and use it in GitHub Desktop.
Octopress plugin to generate monthly archive pages.
# encoding: utf-8
#
# Jekyll monthly arvchive page generator.
module Jekyll
class ArchiveIndex < Page
def initialize(site, base, dir, period, posts)
@site = site
@base = base
@dir = dir
@name = 'index.html'
self.process(@name)
self.read_yaml(File.join(base, '_layouts'), 'archive_index.html')
self.data['period'] = period
self.data['period_posts'] = posts
archive_title_prefix = site.config['archive_title_prefix'] || 'Archive: '
self.data['title'] = "#{archive_title_prefix}#{period["year"]}-#{"%02d" % period["month"]}"
self.data['description'] = "#{archive_title_prefix}#{period["year"]}-#{"%02d" % period["month"]}"
end
end
class ArchiveGenerator < Generator
safe true
def generate(site)
if site.layouts.key? 'archive_index'
site.posts.group_by{ |c| {"month" => c.date.month, "year" => c.date.year} }.each do |period, posts|
archive_dir = File.join(period["year"].to_s(), "%02d" % period["month"].to_s())
write_archive_index(site, archive_dir, period, posts)
end
end
end
def write_archive_index(site, dir, period, posts)
index = ArchiveIndex.new(site, site.source, dir, period, posts)
index.render(site.layouts, site.site_payload)
index.write(site.dest)
site.pages << index
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment