# File lib/mongrel_config/win32_app.rb, line 130
130:     def layout
131:       links = [ 
132:         ["/config", "Status"], 
133:         ["/config/install", "Install"], 
134:         ["/config/logs", "Logs"]
135:         ]
136:       body_content = yield
137:       currently_running = _running_procs
138: 
139:       open(GemPlugin::Manager.instance.resource("mongrel_config", "/index_win32.html")) do |f|
140:         template = ERB.new(f.read)
141:         self << template.result(binding)
142:       end
143:     end