class Jekyll::GroupSubPageTags
Public Class Methods
new(site, base, dir, type, val)
click to toggle source
# File _plugins/jekyll-tagsgenerator.rb, line 43 def initialize(site, base, dir, type, val) @site = site @base = base @dir = dir @name = 'index.html' self.process(@name) self.read_yaml(File.join(base, '_layouts'), "tag.html") self.data["grouptype"] = type self.data[type] = val end