Import inicial do projeto.
[simdecs_seam.git] / SimDeCS / WebContent / layout / template.xhtml
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <f:view xmlns="http://www.w3.org/1999/xhtml"
4    xmlns:ui="http://java.sun.com/jsf/facelets"
5    xmlns:f="http://java.sun.com/jsf/core"
6    xmlns:h="http://java.sun.com/jsf/html"
7    xmlns:a="http://richfaces.org/a4j"
8    xmlns:s="http://jboss.com/products/seam/taglib"
9    contentType="text/html">
10 <html>
11    <head>
12           <meta http-equiv="Pragma" content="no-cache"/>
13       <meta http-equiv="Expires" content="-1"/>
14       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
15       <title>SimDeCS</title>
16       <link rel="shortcut icon" href="#{request.contextPath}/favicon.ico"/>
17       <a:loadStyle src="/stylesheet/theme.xcss"/>
18       <a:loadStyle src="/stylesheet/theme.css"/>
19       <ui:insert name="head"/>
20    </head>
21    <body>
22       <ui:include src="menu.xhtml">
23          <ui:param name="projectName" value="SimDeCS"/>
24       </ui:include>
25       <div class="body">
26          <h:messages id="messages" globalOnly="true" styleClass="message"
27             errorClass="errormsg" infoClass="infomsg" warnClass="warnmsg"
28             rendered="#{showGlobalMessages != 'false'}"/>
29          <ui:insert name="body"/>
30       </div>
31       <div class="footer">
32          <p>Desenvolvido pela <a href="http://www.ufcspa.edu.br">UFCSPA</a>- Universidade Federal de Ciências da Saúde de Porto Alegre </p>
33          <s:fragment rendered="#{init.debug}">
34          <a:log hotkey="D"/>
35         </s:fragment>
36       </div>
37    </body>
38 </html>
39 </f:view>