# File lib/webby.rb, line 121
  def self.load_files
    ::Find.find(site.layout_dir, site.content_dir) do |path|
      next unless test ?f, path
      next if path =~ ::Webby.exclude
      Resources.new path
    end
  end