私はプライムフェイスとグーグルアプリエンジンを扱っています。レイアウトが機能しないため、このコードを投稿しています。最初に、テンプレート facelets (composition、include、insert、sets) を使用しようとしましたが、どちらも機能しませんでした。別の環境で使用するため、facelets と jsf に精通しています。そこで、レイアウトとレイアウトユニットを試してみることにしましたが、何もしませんでした。
ありがとうございました。
<!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:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<f:view contentType="text/html">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Inicio</title>
</head>
<h:body>
<p:layout fullPage="true">
<p:layoutUnit position="top" height="75" header="Top">
<h:outputText value="North unit content1aaaa." />
</p:layoutUnit>
<p:layoutUnit position="center">
<h:form>
This fullPage layout consists of five different layoutUnits which are
resizable and closable by default.
</h:form>
</p:layoutUnit>
<p:layoutUnit position="bottom" height="75" header="Bottom">
<h:outputText value="South unit content." />
</p:layoutUnit>
</p:layout>
</h:body>
</f:view>
</html>