protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
response.setStatus(HttpServletResponse.SC_OK);
response.setContentType("text/html");
WanContentLayer mainLayer = new WanContentLayer("Home");
mainLayer.setLayerTitle("Home");
mainLayer.setSubDiv(true);
mainLayer.addContent(new WanParagraph("Hello World"));
title = "Hello World Title";
setMainLayer(mainLayer);
PrintWriter out = response.getWriter();
try{out.println(render());}