1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="UTF-8" ?>
<!-- c-basic-offset: 2; tab-width: 2; indent-tabs-mode: nil
vi: set shiftwidth=2 tabstop=2 expandtab:
:indentSize=2:tabSize=2:noTabs=true:
-->
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough">
<ui:decorate template="WEB-INF/templates/header.xhtml" />
<h:body>
<ui:decorate template="WEB-INF/templates/page_header.xhtml" />
<div class="main-view">
<!-- Stuffs goes here. -->
</div>
</h:body>
</html>
|