diff --git a/_plugins/category_archive_plugin.rb b/_plugins/category_archive_plugin.rb new file mode 100644 index 0000000..53bd3c2 --- /dev/null +++ b/_plugins/category_archive_plugin.rb @@ -0,0 +1,150 @@ +# Jekyll Module to create category archive pages +# +# Shigeya Suzuki, November 2013 +# Copyright notice (MIT License) attached at the end of this file +# + +# +# This code is based on the following works: +# https://gist.github.com/ilkka/707909 +# https://gist.github.com/ilkka/707020 +# https://gist.github.com/nlindley/6409459 +# + +# +# Archive will be written as #{archive_path}/#{category_name}/index.html +# archive_path can be configured in 'path' key in 'category_archive' of +# site configuration file. 'path' is default null. +# + +module Jekyll + + module CategoryArchiveUtil + def self.archive_base(site) + site.config['category_archive'] && site.config['category_archive']['path'] || '' + end + end + + # Generator class invoked from Jekyll + class CategoryArchiveGenerator < Generator + def generate(site) + posts_group_by_category(site).each do |category, list| + site.pages << CategoryArchivePage.new(site, CategoryArchiveUtil.archive_base(site), category, list) + end + end + + def posts_group_by_category(site) + category_map = {} + site.posts.each {|p| p.categories.each {|c| (category_map[c] ||= []) << p } } + category_map + end + end + + # Tag for generating a link to a category archive page + class CategoryArchiveLinkTag < Liquid::Block + + def initialize(tag_name, category, tokens) + super + @category = category.split(' ').first || category + end + + def render(context) + # If the category is a variable in the current context, expand it + if context.has_key?(@category) + category = context[@category] + else + category = @category + end + + + if context.registers[:site].config['category_archive'] && context.registers[:site].config['category_archive']['slugify'] + category = Utils.slugify(category) + end + + href = File.join('/', context.registers[:site].baseurl, context.environments.first['site']['category_archive']['path'], + category, 'index.html') + "#{super}" + end + end + + # Actual page instances + class CategoryArchivePage < Page + ATTRIBUTES_FOR_LIQUID = %w[ + category, + content + ] + + def initialize(site, dir, category, posts) + @site = site + @dir = dir + @category = category + + if site.config['category_archive'] && site.config['category_archive']['slugify'] + @category_dir_name = Utils.slugify(@category) # require sanitize here + else + @category_dir_name = @category + end + + @layout = site.config['category_archive'] && site.config['category_archive']['layout'] || 'category_archive' + self.ext = '.html' + self.basename = 'index' + self.content = <<-EOS +{% for post in page.posts %}