projects
/
web.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
twinsem paper: directly link to current location
[web.git]
/
personal
/
_plugins
/
categories.rb
diff --git
a/personal/_plugins/categories.rb
b/personal/_plugins/categories.rb
index 65776d72b067790e98677386f8df0f52c70ac1e9..3e0fabec3e192b54829c645455b1f4c806376815 100644
(file)
--- a/
personal/_plugins/categories.rb
+++ b/
personal/_plugins/categories.rb
@@
-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
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
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.
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.
# 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.
@@
-45,11
+45,9
@@
module Jekyll
#
# Returns string
def category_links(categories)
#
# Returns string
def category_links(categories)
- base_dir = @context.registers[:site].config['blog']['category_dir']
+ cat_base_dir = File.join(@context.registers[:site].config['baseurl'], @context.registers[:site].config['blog']['category_dir'])
categories = categories.sort!.map do |category|
categories = categories.sort!.map do |category|
- category_url = File.join(base_dir, "#{category}.html")
- # Make sure the category directory begins with a slash.
- category_dir = "/#{category_dir}" unless category_dir =~ /^\//
+ category_url = File.join(cat_base_dir, "#{category}.html")
"<a class='category' href='#{category_url}'>#{category.capitalize}</a>"
end
"<a class='category' href='#{category_url}'>#{category.capitalize}</a>"
end
@@
-64,3
+62,5
@@
module Jekyll
end
end
end
end
end
end
+
+Liquid::Template.register_filter(Jekyll::CategoryFilter)