add tags
This commit is contained in:
parent
c09fefc22a
commit
b90c1c8de9
8 changed files with 125 additions and 3 deletions
33
_plugins/_tag_gen.rb
Normal file
33
_plugins/_tag_gen.rb
Normal file
|
@ -0,0 +1,33 @@
|
|||
module Jekyll
|
||||
class TagIndex < Page
|
||||
def initialize(site, base, dir, tag)
|
||||
@site = site
|
||||
@base = base
|
||||
@dir = dir
|
||||
@name = 'index.html'
|
||||
self.process(@name)
|
||||
self.read_yaml(File.join(base, '_layouts'), 'tag_index.html')
|
||||
self.data['tag'] = tag
|
||||
tag_title_prefix = site.config['tag_title_prefix'] || 'Posts Tagged “'
|
||||
tag_title_suffix = site.config['tag_title_suffix'] || '”'
|
||||
self.data['title'] = "#{tag_title_prefix}#{tag}#{tag_title_suffix}"
|
||||
end
|
||||
end
|
||||
class TagGenerator < Generator
|
||||
safe true
|
||||
def generate(site)
|
||||
if site.layouts.key? 'tag_index'
|
||||
dir = site.config['tag_dir'] || 'tag'
|
||||
site.tags.keys.each do |tag|
|
||||
write_tag_index(site, File.join(dir, tag), tag)
|
||||
end
|
||||
end
|
||||
end
|
||||
def write_tag_index(site, dir, tag)
|
||||
index = TagIndex.new(site, site.source, dir, tag)
|
||||
index.render(site.layouts, site.site_payload)
|
||||
index.write(site.dest)
|
||||
site.pages << index
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue