Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.08 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4.      xmlns:f="http://java.sun.com/jsf/core"
  5.      xmlns:h="http://java.sun.com/jsf/html"
  6.      xmlns:ui="http://java.sun.com/jsf/facelets"
  7.      xmlns:p="http://primefaces.org/ui"
  8.      xmlns:pe="http://primefaces.org/ui/extensions"
  9.      lang="pt-br">
  10.     <f:view contentType="text/html" locale="pt_BR">
  11.         <pe:head title="Siger">
  12.             <f:facet name="first">
  13.                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  14.                 <meta http-equiv="pragma" content="no-cache"/>
  15.                 <meta http-equiv="cache-control" content="no-cache"/>
  16.                 <meta http-equiv="expires" content="0"/>
  17.                 <meta name="viewport" content="width=device-width, user-scalable=no" />
  18.             </f:facet>
  19.         </pe:head>
  20.         <h:body id="corpo">
  21.             <div id="wrap">
  22.                 <div id="container" class="container">
  23.                     <!-- Ativa o ajaxErrorHandler -->
  24.                     <ui:insert name="ajaxErrorHandler">
  25.                         <pe:ajaxErrorHandler widgetVar="ajaxErrorHandler" button="Hide" buttonOnclick="ajaxErrorHandler.hide();" />
  26.                         <pe:ajaxErrorHandler type="javax.faces.application.ViewExpiredException" button="Reload" buttonOnclick="document.location.href=document.location.href;" />
  27.                     </ui:insert>
  28.                     <!-- Cabeçalho -->
  29.                     <ui:insert name="cabecalho"/>
  30.                     <!-- Conteúdo principal -->
  31.                     <ui:insert name="center"/>
  32.                     <!-- Dialogs da aplicação -->
  33.                     <ui:insert name="dialogs"/>
  34.                     <!-- Rodapé -->
  35.                 </div>
  36.                 <ui:insert name="rodape"/>
  37.                 <!-- Recursos de código -->
  38.                 <ui:insert name="resources-app"/>
  39.             </div>
  40.         </h:body>
  41.     </f:view>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement