15 lines
456 B
Plaintext

<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html lang="en">
<head>
<title>Charm Not Found</title>
<%@ include file="style.html" %>
</head>
<body>
<%@ include file="header.jsp" %>
<div>
<h3>404 - ${requestScope.wordBundle.getWord("page-not-found")}</h3>
</div>
<%@ include file="footer.jsp" %>
</body>
</html>