Subversion Repositories bacoAlunos

Rev

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

Rev Author Line No. Line
39 fvelez 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" %>
8
<html:html locale="true">
9
    <head>
10
        <title><bean:message key="site.title"/> - <tiles:getAsString name="title"/></title>
11
        <jsp:include page="/layout/scripts.jsp"/>
533 jmachado 12
 
39 fvelez 13
    </head>
14
 
15
 
16
    <body class="small" marginwidth="0" marginheight="0" bgcolor="#ffffff" topmargin="0" leftmargin="0" onload="horizontal();">
533 jmachado 17
    <center>
18
        <table width="100%">
39 fvelez 19
            <tr>
533 jmachado 20
                <td align="center">
21
                    <div id="body">
22
                        <div id="header">
23
                            <tiles:insert attribute="header"/>
24
                        </div>
25
                        <table id="pageStructure">
26
                            <tr>
27
                                <td colspan="3"><tiles:insert attribute="navigationTop"/></td>
28
                            </tr>
29
                            <tr>
39 fvelez 30
 
533 jmachado 31
 
32
                                <td colspan="3">
33
                                    <tiles:insert attribute="topnav"/>
34
                                </td>
35
 
36
                            </tr>
37
                            <tr>
38
 
39
                                <td class="contentPortal">
40
 
41
                                    <tiles:insert attribute="body" />
42
                                </td>
43
 
44
                                <td id="rightPagePortal">
45
                                    <tiles:insert attribute="navigationRight"/>
46
                                </td>
47
                            </tr>
48
                        </table>
49
 
50
                        <div id="noticiasAnunciosWelcome" >
51
                            <table cellpadding="0" cellspacing="0" border="0">
52
                                <tr>
53
                                    <th class="underline"><bean:message key="mainAnnouncements"/></th>
54
                                </tr>
55
                                <tr>
56
                                    <td>
57
                                        <tiles:insert attribute="destaquesBottom" />
58
                                    </td>
59
                                </tr>
60
                            </table>
61
                        </div>
62
 
63
                        <div id="footer">
64
                            <tiles:insert attribute="footer"/>
65
                        </div>
66
                    </div>
39 fvelez 67
                </td>
68
            </tr>
69
        </table>
533 jmachado 70
    </center>
39 fvelez 71
    </body>
72
</html:html>
73