www/exception/404.jsp

Code
Comments
Other
Rev Date Author Line
7114 16 Mar 16 nicklas 1 <%-- $Id$
7114 16 Mar 16 nicklas 2   ------------------------------------------------------------------
7114 16 Mar 16 nicklas 3   Copyright (C) 2016 Nicklas Nordborg
7114 16 Mar 16 nicklas 4
7114 16 Mar 16 nicklas 5   This file is part of BASE - BioArray Software Environment.
7114 16 Mar 16 nicklas 6   Available at http://base.thep.lu.se/
7114 16 Mar 16 nicklas 7
7114 16 Mar 16 nicklas 8   BASE is free software; you can redistribute it and/or
7114 16 Mar 16 nicklas 9   modify it under the terms of the GNU General Public License
7114 16 Mar 16 nicklas 10   as published by the Free Software Foundation; either version 3
7114 16 Mar 16 nicklas 11   of the License, or (at your option) any later version.
7114 16 Mar 16 nicklas 12
7114 16 Mar 16 nicklas 13   BASE is distributed in the hope that it will be useful,
7114 16 Mar 16 nicklas 14   but WITHOUT ANY WARRANTY; without even the implied warranty of
7114 16 Mar 16 nicklas 15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7114 16 Mar 16 nicklas 16   GNU General Public License for more details.
7114 16 Mar 16 nicklas 17
7114 16 Mar 16 nicklas 18   You should have received a copy of the GNU General Public License
7114 16 Mar 16 nicklas 19   along with BASE. If not, see <http://www.gnu.org/licenses/>.
7114 16 Mar 16 nicklas 20   ------------------------------------------------------------------
7114 16 Mar 16 nicklas 21 --%>
7114 16 Mar 16 nicklas 22 <%@ page pageEncoding="UTF-8" session="false"
7114 16 Mar 16 nicklas 23   import="net.sf.basedb.clients.web.util.HTML"
7114 16 Mar 16 nicklas 24   isErrorPage="true"
7114 16 Mar 16 nicklas 25 %>
7114 16 Mar 16 nicklas 26 <%@taglib prefix="base" uri="/WEB-INF/base.tld" %>
7114 16 Mar 16 nicklas 27 <base:page type="default" menu="exception" title="404 Page not found">
7114 16 Mar 16 nicklas 28 <base:head />
7114 16 Mar 16 nicklas 29 <base:body>
7114 16 Mar 16 nicklas 30   <h1>404 Page not found</h1>
7114 16 Mar 16 nicklas 31   
7114 16 Mar 16 nicklas 32   <div class="content bottomborder" style="bottom: 3em;">
7114 16 Mar 16 nicklas 33   <div class="messagecontainer error">
7114 16 Mar 16 nicklas 34   <%=HTML.encodeTags(request.getAttribute("javax.servlet.error.request_uri")+"")%>
7114 16 Mar 16 nicklas 35   </div>
7114 16 Mar 16 nicklas 36   </div>
7114 16 Mar 16 nicklas 37   
7114 16 Mar 16 nicklas 38 </base:body>
7114 16 Mar 16 nicklas 39 </base:page>
7114 16 Mar 16 nicklas 40