Subversion Repositories bacoAlunos

Rev

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

Rev Author Line No. Line
533 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" %>
8
<%@ page import="pt.estgp.estgweb.Globals" %>
9
 
10
<html:html locale="true">
11
    <head>
12
        <title><bean:message key="site.title"/> - <tiles:getAsString name="title"/></title>
13
        <jsp:include page="/layout/scripts.jsp"/>
542 jmachado 14
 
15
        <%
16
          if(Globals.USE_TOP_FLASH_NEWS)
17
          {
18
        %>
19
        <script type="text/javascript">
533 jmachado 20
			<!--
21
				getFlashNews('<%=request.getContextPath()%>/public/announcements/getFlashNews.jsp',<%=Globals.ANNOUNCEMENT_TYPE_TOP_FLASH_NEWS_TIMEOUT%>);
22
				 -->
23
		</script>
542 jmachado 24
        <%
25
            }
26
        %>
533 jmachado 27
 
28
    </head>
29
 
30
 
31
    <body class="small" marginwidth="0" marginheight="0" bgcolor="#ffffff" topmargin="0" leftmargin="0" onload="horizontal();" >
32
        <center>
33
        <table width="100%">
34
            <tr>
35
                <td align="center">
36
 
37
                    <div id="body">
38
                        <div id="header">
39
                            <!-- Barra de titulo -->
40
                           <tiles:insert attribute="header"/>
41
                       </div>
42
                        <table id="pageStructure">
43
                           <tr>
539 jmachado 44
                               <td id="leftPage" rowspan="2">
533 jmachado 45
                                   <tiles:insert attribute="navigationLeft" />
46
                               <!-- <p><align="center" "animaHome.jpg"</p> -->
47
                               </td>
48
                               <!--<td id="leftPage">-->
536 jmachado 49
                               <td width="90%">
539 jmachado 50
						<div style="z-index:100000">
533 jmachado 51
                                   <tiles:insert attribute="navigationTop"/>
539 jmachado 52
					</div>
53
			       </td>
54
			</tr>
55
			<tr>
56
                               <td width="90%">
57
	                              <div align="center">
542 jmachado 58
					                <OBJECT WIDTH="928" height="175" style="background-color:orange;" HEIGHT="240">
59
                                    <PARAM NAME="MOVIE" VALUE="<%=request.getContextPath()%>/imgs/FLA_HOME4.swf">
60
                                    <PARAM NAME="PLAY" VALUE="true">
61
                                    <PARAM NAME="LOOP" VALUE="true">
62
                                    <PARAM NAME="WMODE" VALUE="transparent">
63
                                    <PARAM NAME="QUALITY" VALUE="high">
64
                                    <EMBED SRC="<%=request.getContextPath()%>/imgs/FLA_HOME4.swf" WIDTH="928" height="175"  PLAY="true" LOOP="true" WMODE="transparent" QUALITY="high">
65
                                    </EMBED>
66
                                    </OBJECT>
67
                                </div>
68
                                   <%
69
 
70
                                   if(Globals.USE_TOP_FLASH_NEWS)
71
                                   {
72
                                   %>
533 jmachado 73
                                   <div id="flashTopNews">
74
                                       <table class="container">
75
                                           <tr>
76
                                               <td class="textContainer">
77
                                                   <bean:message key="announcements.loading"/>
78
                                               </td>
79
                                               <td class="imageContainer">
80
                                               </td>
81
                                           </tr>
82
                                       </table>
83
                                   </div>
542 jmachado 84
                                   <%
85
                                       }
86
                                   %>
533 jmachado 87
                               </td>
88
                           </tr>
89
                       </table>
90
                    </div>
91
                </td>
92
            </tr>
93
            <tr>
94
 
95
 
96
            </tr>
97
        </table>
98
 
99
        <div id="noticiasAnunciosWelcome" >
100
            <table cellpadding="0" cellspacing="0" border="0">
101
                <tr>
102
                    <th class="underline"><bean:message key="mainAnnouncements"/></th>
103
                    <th>&nbsp;&nbsp;&nbsp;</th>
104
                    <th class="underline"><bean:message key="announcements"/></th>
105
                </tr>
106
                <tr>
107
                    <td>
108
                        <!-- Destaques -->
109
                        <tiles:insert attribute="topnav"/>
110
                        <tiles:insert attribute="body" />
111
                    </td>
112
                    <td >&nbsp;&nbsp;&nbsp;</td>
113
                    <td>
114
                        <!-- Ultimas noticias -->
115
                         <tiles:insert attribute="navigationRight"/>
116
                    </td>
117
                </tr>
118
            </table>
119
        </div>
120
 
121
        <div id="footer">
122
            <tiles:insert attribute="footer"/>
123
            <!-- Fundo -->
124
        </div>
125
 
126
        </center>
127
    </body>
128
</html:html>
129