hs.hsadmin/hsarweb/webapp/hello/index.xhtml

21 lines
710 B
HTML
Raw Normal View History

2010-09-21 20:14:58 +02:00
<?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:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets">
<head>
<title>Hello World</title>
</head>
<body>
<ui:composition template="/templates/menu-template.xhtml">
<ui:param name="title" value="Hallo schöne Welt"/>
<ui:define name="content">
<f:view>
2010-09-23 17:30:34 +02:00
<h:outputText value="#{hello.message}"/>, es ist jetzt&#160; <h:outputText value="#{hello.time}"/> Uhr.
2010-09-21 20:14:58 +02:00
</f:view>
</ui:define>
</ui:composition>
</body>
</html>