hs.hsadmin/hsarweb/webapp/templates/menu-template.xhtml

26 lines
791 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/template.xhtml">
<ui:define name="menu">
<f:view>
<h:dataTable var="menuitem" value="#{modules.pageNames}">
<h:column>
<h:outputLink value="#{modules.urls[menuitem]}">
<h:outputText value="#{modules.labels[menuitem]}" />
</h:outputLink>
</h:column>
</h:dataTable>
</f:view>
</ui:define>
</ui:composition>
</body>
</html>