provenance-matters: explain what went wrong
[web.git] / ralf / _plugins / categories.rb
index 4d08693c9ef574150d198c2f395ff834252ac660..3e0fabec3e192b54829c645455b1f4c806376815 100644 (file)
@@ -11,7 +11,7 @@ module Jekyll
       self.read_yaml(File.join(base, '_layouts'), layout)
       self.data['category'] = category # this tells the site template to add a link to the RSS feed
 
-      category_title_prefix = site.config['blog']['category_title_prefix'] || 'Category: '
+      category_title_prefix = site.config['blog']['title'] + ": "
       self.data['title'] = "#{category_title_prefix}#{category.capitalize}"
     end
   end
@@ -36,7 +36,7 @@ module Jekyll
   end
 
   # Adds some extra filters used during the category creation process.
-  module Filters
+  module CategoryFilter
 
     # Outputs a list of categories as comma-separated <a> links. This is used
     # to output the category list for each post on a category page.
@@ -62,3 +62,5 @@ module Jekyll
     end
   end
 end
+
+Liquid::Template.register_filter(Jekyll::CategoryFilter)