<?xml version="1.0" encoding="UTF-8" ?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:t="http://myfaces.apache.org/tomahawk"
version="2.0">
<ui:composition>
<h:outputText value='<?xml version="1.0" encoding="UTF-8"?>' escape="false"/>
<h:outputText value='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' escape="false"/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>
<h:outputText value="Camayu CRM#{not empty title ? ' - ' : ''}#{not empty title ? title : ''}"/>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="${request.contextPath}/css/style.css"/>
<script type="text/javascript" src="${request.contextPath}/javascripts/prototype.js"></script>
<script type="text/javascript" src="${request.contextPath}/javascripts/widthHandler.js"></script>
<script type="text/javascript">
function markParentNavItem(childList) {
navParentItem = $(childList).previous();
if(!navParentItem.hasClassName('selected_parent')) {
navParentItem.addClassName('selected_parent');
childList.onmouseout = function() {
navParentItem.removeClassName('selected_parent');
}
}
}
</script>
<ui:insert name="addons"></ui:insert>
</head>
<body>
<ui:include src="header.jspx"/>
<ui:include src="navBar.jspx"/>
<t:div styleClass="container">
<ui:include src="contentHeader.jspx"/>
<ui:include src="contentBody.jspx"/>
</t:div>
</body>
</html>
</ui:composition>
</jsp:root>