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">
|
|
|
|
|
|
|
|
<ui:insert name="metadata"/>
|
|
|
|
<h:head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<title>#{title}</title>
|
|
|
|
</h:head>
|
|
|
|
<h:body>
|
|
|
|
<h:outputStylesheet library="styles" name="hsar.css"/>
|
|
|
|
<h:outputScript library="javax.faces" name="jsf.js" target="head"/>
|
|
|
|
<div class="page">
|
|
|
|
<div class="header">
|
|
|
|
<ui:insert name="header" />
|
|
|
|
</div>
|
|
|
|
<div class="main">
|
|
|
|
<div class="menu">
|
|
|
|
<ui:insert name="menu">Default Menu</ui:insert>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<ui:insert name="content">Default Content</ui:insert>
|
|
|
|
</div>
|
2010-09-23 17:30:34 +02:00
|
|
|
<div class="dummy"></div>
|
2010-09-21 20:14:58 +02:00
|
|
|
</div>
|
|
|
|
<div class="footer">
|
|
|
|
<ui:insert name="footer">Default Footer</ui:insert>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</h:body>
|
|
|
|
</html>
|