23 lines
835 B
HTML
23 lines
835 B
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<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">
|
|
<f:metadata>
|
|
<f:viewParam name="refresh" value="#{specs.refresh}"/>
|
|
</f:metadata>
|
|
|
|
<ui:composition template="./header.xhtml">
|
|
<ui:define name="content">
|
|
<h:form align="left" >
|
|
<div style="margin: auto; width: 800px">
|
|
<div style="display: inline; float: right;">
|
|
<!-- Crear menu de aplicación solo si estamos logeados -->
|
|
</div>
|
|
<br /><br />
|
|
<!-- Mostrar página de bienvenida -->
|
|
</div>
|
|
</h:form>
|
|
</ui:define>
|
|
</ui:composition>
|
|
</html> |