import javax.servlet.*; import javax.servlet.http.*; /** * Draws the main "welcome" page -- it just spits out static HTML */ public class Front extends LitsearchBase { public String drawPage(HttpServletRequest request, HttpServletResponse response) throws Exception { Template t = new Template(TEMPLATE_DIR + "front.html"); return t.toString(); } }