WIP
[percentcodec] / examples / jsp / src / main / webapp / index.jsp
1 <%@page contentType="text/html" pageEncoding="UTF-8" session="false" buffer="1kb" %>
2 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3
4 <html>
5   <head>
6     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7     <title>Simple Page</title>
8   </head>
9   <body>
10     <h1>Simple Page</h1>
11     <p>This page is a simple jsp-page</p>
12     <p>At the same time, it gives an overview over all tests...</p>
13     <ul>
14       <li><a href="/index.jsp">A really simple JSP-page (this page!)</a></li>
15       <li><a href="/page-with-include.jsp">A JSP-page with several includes</a></li>
16       <li><a href="/page-with-forward.jsp">A JSP-page with a forward to /simple-page.jsp</a></li>
17     </ul>
18   </body>
19 </html>