# File lib/cgikit/project/template.rb, line 65
    def write
      if @project.japanese? then
        str = template_ja
      else
        str = template_en
      end
      File.open(path, 'w') do |f| f.write(str) end
    end