Skip to content

Instantly share code, notes, and snippets.

@josegonzalez
Created August 14, 2010 21:41
Show Gist options
  • Star 29 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save josegonzalez/524748 to your computer and use it in GitHub Desktop.
Save josegonzalez/524748 to your computer and use it in GitHub Desktop.
Category plugin for Jekyll
module Jekyll
class CategoryIndex < Page
def initialize(site, base, dir, category)
@site = site
@base = base
@dir = dir
@name = 'index.html'
self.process(@name)
self.read_yaml(File.join(base, '_layouts'), 'category_index.html')
self.data['category'] = category
category_title_prefix = site.config['category_title_prefix'] || 'Category: '
self.data['title'] = "#{category_title_prefix}#{category}"
end
end
class CategoryGenerator < Generator
safe true
def generate(site)
if site.layouts.key? 'category_index'
dir = site.config['category_dir'] || 'categories'
site.categories.keys.each do |category|
write_category_index(site, File.join(dir, category), category)
end
end
end
def write_category_index(site, dir, category)
index = CategoryIndex.new(site, site.source, dir, category)
index.render(site.layouts, site.site_payload)
index.write(site.dest)
end
end
end
@LoganAaron
Copy link

How do you use this?

@kenhkelly
Copy link

Add it to the _plugins directory of your Jekyll project. Should run automatically on build.

@xylo
Copy link

xylo commented Dec 31, 2015

At the moment I'm trying to get your script work with Jekyll 3.0.1. But when I build the page using "jekyll build" the pages are only temporarly created and get removed after around 2 seconds. Does this script only work with older jekyll versions?

@janmarthedal
Copy link

@xylo See the CategoryPageGenerator example on the Jekyll site: http://jekyllrb.com/docs/plugins/#generators

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment