50 lines
1.7 KiB
Plaintext
50 lines
1.7 KiB
Plaintext
<%@ page language="java" pageEncoding="ISO-8859-1"%>
|
|
<%@taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
|
|
<%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%>
|
|
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
|
|
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
|
|
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
|
|
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<f:view>
|
|
<f:loadBundle basename="messages" var="msg"/>
|
|
<head>
|
|
<meta http-equiv="Content-Script-Type" content="text/javascript"/>
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline' 'unsafe-eval'"/>
|
|
<title><tiles:getAsString name="title"/></title>
|
|
<style>
|
|
.infopanel { border:2px solid #{richSkin.panelBorderColor}; }
|
|
.row1 { height:60px; }
|
|
.row1 .col { padding:10px; }
|
|
.row2 { height:2px; }
|
|
.row3 { height:20px; }
|
|
.row3 .col {text-align:left; }
|
|
.col { }
|
|
</style>
|
|
<t:stylesheet path="/resources/css/dbcfxgo.css"></t:stylesheet>
|
|
<t:stylesheet path="/resources/css/default.css"></t:stylesheet>
|
|
<t:stylesheet path="/resources/css/basic.css"></t:stylesheet>
|
|
</head>
|
|
<body >
|
|
<h:form id="form2">
|
|
<div id="outer">
|
|
<div id="header">
|
|
<f:subview id="header">
|
|
<tiles:insertAttribute name="header" flush="false"/>
|
|
</f:subview>
|
|
</div>
|
|
<rich:separator align="center" />
|
|
<div id="content">
|
|
|
|
<f:subview id="main">
|
|
<tiles:insertAttribute name="main" flush="false"/>
|
|
</f:subview>
|
|
|
|
</div>
|
|
</div>
|
|
</h:form>
|
|
</body>
|
|
</f:view>
|
|
</html>
|
|
|