# File lib/jekyll/site.rb, line 30 def reset self.time = Time.parse(self.config['time'].to_s) || Time.now self.layouts = {} self.posts = [] self.pages = [] self.static_files = [] self.categories = Hash.new { |hash, key| hash[key] = [] } self.tags = Hash.new { |hash, key| hash[key] = [] } end