25 lines
937 B
HTML
25 lines
937 B
HTML
<!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:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:my="http://xmlns.jcp.org/jsf/composite/my" xmlns:b="http://bootsfaces.net/ui" style="height: 100%; width: 100%">
|
|
<h:head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
</h:head>
|
|
<h:body styleClass="body">
|
|
<h:outputStylesheet name="css/style.css" />
|
|
<h:outputScript library="bsf" name="jq/jquery.js" target="head" />
|
|
<div class="page">
|
|
<div class="top">
|
|
<ui:insert name="top" />
|
|
</div>
|
|
<div>
|
|
<b:messages />
|
|
</div>
|
|
<div class="main">
|
|
<ui:insert name="main" />
|
|
</div>
|
|
<div class="navigation">
|
|
<ui:insert name="navigation" />
|
|
</div>
|
|
</div>
|
|
</h:body>
|
|
</html>
|