21 lines
710 B
HTML
21 lines
710 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: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>
|
|
<h:outputText value="#{hello.message}"/>, es ist jetzt  <h:outputText value="#{hello.time}"/> Uhr.
|
|
</f:view>
|
|
</ui:define>
|
|
</ui:composition>
|
|
</body>
|
|
</html> |