1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
<?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:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:x="http://mysite.org/cclib2"
xmlns:cclib="http://java.sun.com/jsf/composite/cclib"
xmlns:moc="http://mysite.org/classTaglibIJL"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<h:outputStylesheet name="css/default.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title><ui:insert name="title">Default Title</ui:insert></title>
</h:head>
<h:body>
<h1>
<ui:insert name="title">Default Title</ui:insert>
</h1>
<p>
<ui:insert name="body">Default Body</ui:insert>
</p>
</h:body>
<cclib:cc ccattr22=""/>
<moc:mytag myattr="sss"/>
<x:cc2/>
</html>
|