agtemplateweb/target/agtemplate-1.0.0/agtemplate/template/template.xhtml

52 lines
1.7 KiB
HTML

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html>
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui"
xmlns:jsf="http://xmlns.jcp.org/jsf"
>
<f:view>
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>
AGTEMPLATE / <ui:insert name="HEAD_TITULO_PAGINA"></ui:insert>
</title>
<ui:insert name="HEAD_PAGINA"></ui:insert>
</h:head>
<h:body id="body_agtemplate">
<h:form id="form_geral">
<p:menubar>
<ui:include src="./menu.xhtml" />
</p:menubar>
<ui:insert name="TITULO_PAGINA"></ui:insert>
<ui:insert name="SISTEMA_PAGINA"></ui:insert>
<ui:insert name="CAMINHO_PAGINA"></ui:insert>
<ui:insert name="MENU_PAGINA"></ui:insert>
<p:messages id="messages" showSummary="true" closable="true" />
<h:panelGroup id="form_formulario" layout="block">
<ui:insert name="FORMULARIO"></ui:insert>
</h:panelGroup>
<ui:insert name="LIVRE"> </ui:insert>
<p:confirmDialog message="Deseja Excluir?">
<p:commandButton
value="SIM"
type="button"
styleClass="ui-confirmdialog-yes"
icon="ui-icon-check"
/>
<p:commandButton
value="NÃO"
type="button"
styleClass="ui-confirmdialog-no"
icon="ui-icon-close"
/>
</p:confirmDialog>
<p:growl id="panelAlerta" life="5000" showSummary="true" />
</h:form>
</h:body>
</f:view>
</html>