123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE html>
- <html>
- <%@page import="java.util.Date"%>
- <head>
- <title><%= request.getAttribute("title")%></title>
- <style type="text/css">
- @import url("<%=request.getContextPath()%>/css/orion.css");
- @import url("<%=request.getContextPath()%>/css/view-code.css");
- </style>
- </head>
- <body>
- <div id="page">
- <div id="header">
- <table width="100%">
- <tr>
- <td><b><%= request.getAttribute("title")%></b></td>
- <td align="right">
- Formatted by <b>The Amazing Formatter</b> on <%= new Date()%>
- </td>
- </tr>
- </table>
- </div>
- <div id="content">
- <%= request.getAttribute("content")%>
- </div>
- <jsp:include page="copyright.jsp"/>
- </div>
- </body>
- </html>
|