Subversion Repositories bacoAlunos

Rev

Rev 1306 | Rev 1337 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
150 jmachado 1
<%@ page contentType="text/html" %>
2
<%@ page pageEncoding="UTF-8" %>
3
<%@ taglib uri="/WEB-INF/tlds/struts-html.tld" prefix="html" %>
4
<%@ taglib uri="/WEB-INF/tlds/struts-nested.tld" prefix="nested" %>
5
<%@ taglib uri="/WEB-INF/tlds/struts-logic.tld" prefix="logic" %>
6
<%@ taglib uri="/WEB-INF/tlds/struts-bean.tld" prefix="bean" %>
7
<%@ taglib uri="/WEB-INF/tlds/struts-tiles.tld" prefix="tiles" %>
1 fvelez 8
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
150 jmachado 9
 
1 fvelez 10
<html:html locale="true">
11
    <head>
150 jmachado 12
        <html:base/>
13
        <title>
14
            <bean:message key="site.title"/>
15
            -
16
            <tiles:getAsString name="title"/>
17
        </title>
1 fvelez 18
        <jsp:include page="/layout/scripts.jsp"/>
19
    </head>
20
    <body>
150 jmachado 21
    <table width="100%">
1 fvelez 22
        <tr>
150 jmachado 23
            <td align="center">
24
                <div id="body">
25
                    <div id="header">
26
                        <tiles:insert attribute="header"/>
27
                    </div>
28
                    <table id="page" width="100%">
29
                        <tr>
30
                            <td id="content" class="errorPage">
31
                                <tiles:insert attribute="body"/>
32
                            </td>
33
                        </tr>
34
                    </table>
35
                    <div id="footer">
36
                        <tiles:insert attribute="footer"/>
37
                    </div>
38
                </div>
1 fvelez 39
            </td>
40
        </tr>
41
    </table>
42
    </body>
43
</html:html>