1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
24 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
25 |
<html xmlns="http://www.w3.org/1999/xhtml" |
26 |
xmlns:h="http://java.sun.com/jsf/html" |
27 |
xmlns:f="http://java.sun.com/jsf/core" |
28 |
xmlns:ice="http://www.icefaces.org/icefaces/components" |
29 |
xmlns:ui="http://java.sun.com/jsf/facelets" > |
30 |
|
31 |
<f:view contentType="text/html"> |
32 |
<f:loadBundle |
33 |
basename="messages" |
34 |
var="msgs"/> |
35 |
|
36 |
<h:head> |
37 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
38 |
<link href="./css/cssLayout.css" rel="stylesheet" type="text/css" /> |
39 |
<link href="./css/showcase_style.css" rel="stylesheet" type="text/css" /> |
40 |
<link href="./css/showcase_overrides.css" rel="stylesheet" type="text/css" /> |
41 |
<link href="./css/showcase_layout.css" rel="stylesheet" type="text/css" /> |
42 |
<h:outputScript name="jsf.js" library="javax.faces" /> |
43 |
<title>ICEfaces Advanced Components</title> |
44 |
</h:head> |
45 |
|
46 |
<h:body> |
47 |
|
48 |
<div id="header"> |
49 |
<ui:insert name="header"> |
50 |
<ui:include src="header.xhtml" /> |
51 |
</ui:insert> |
52 |
</div> |
53 |
|
54 |
<div id="navAndContentdiv" class="#{skinBean.skin}"> |
55 |
<div id="navigation"> |
56 |
<ui:include src="single-navigation.xhtml" /> |
57 |
</div> |
58 |
|
59 |
<div id="content"> |
60 |
<h:panelGroup id="icecontentTemplate"> |
61 |
<ui:insert name="page-content"/> |
62 |
</h:panelGroup> |
63 |
</div> |
64 |
</div> |
65 |
|
66 |
<div id="footer"> |
67 |
<ui:include src="footer.xhtml"/> |
68 |
</div> |
69 |
</h:body> |
70 |
<h:outputStylesheet library="org.icefaces.component.skins" name="rime.css" /> |
71 |
<h:outputStylesheet library="org.icefaces.component.skins" name="sam.css" /> |
72 |
</f:view> |
73 |
</html> |
74 |
|