# File lib/mongrel_config/win32_app.rb, line 130
    def layout
      links = [ 
        ["/config", "Status"], 
        ["/config/install", "Install"], 
        ["/config/logs", "Logs"]
        ]
      body_content = yield
      currently_running = _running_procs

      open(GemPlugin::Manager.instance.resource("mongrel_config", "/index_win32.html")) do |f|
        template = ERB.new(f.read)
        self << template.result(binding)
      end
    end