# File lib/web/template.rb, line 207
    def Narflates.template_file( template )
      template_file = template
      Web.template_include_path.reverse.each{ |dir|
        full_template_path = File.join( dir, template )
        if (File.exists? full_template_path)
          template_file = full_template_path
        end
      }
      template_file
    end