├── LICENSE ├── README.markdown ├── VERSION ├── _includes └── custom │ └── category_feed.xml ├── _layouts └── category_index.html ├── _plugins └── octopress_filters.rb ├── generate_categories.rb ├── generate_projects.rb └── generate_sitemap.rb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recurser/jekyll-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recurser/jekyll-plugins/HEAD/README.markdown -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.4 -------------------------------------------------------------------------------- /_includes/custom/category_feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recurser/jekyll-plugins/HEAD/_includes/custom/category_feed.xml -------------------------------------------------------------------------------- /_layouts/category_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recurser/jekyll-plugins/HEAD/_layouts/category_index.html -------------------------------------------------------------------------------- /_plugins/octopress_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recurser/jekyll-plugins/HEAD/_plugins/octopress_filters.rb -------------------------------------------------------------------------------- /generate_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recurser/jekyll-plugins/HEAD/generate_categories.rb -------------------------------------------------------------------------------- /generate_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recurser/jekyll-plugins/HEAD/generate_projects.rb -------------------------------------------------------------------------------- /generate_sitemap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recurser/jekyll-plugins/HEAD/generate_sitemap.rb --------------------------------------------------------------------------------