comparison src/main/webapp/template/template.xhtml @ 7:bc57f2660b0f

implementation of web service
author Jorge Urzua <jurzua@mpiwg-berlin.mpg.de>
date Fri, 12 Apr 2013 17:48:42 +0200
parents
children
comparison
equal deleted inserted replaced
5:7d231e4e86e5 7:bc57f2660b0f
1 <?xml version='1.0' encoding='UTF-8' ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"
4 xmlns:ui="http://java.sun.com/jsf/facelets"
5 xmlns:f="http://java.sun.com/jsf/core"
6 xmlns:h="http://java.sun.com/jsf/html"
7 xmlns:icecore="http://www.icefaces.org/icefaces/core"
8 xmlns:ace="http://www.icefaces.org/icefaces/components"
9 xmlns:ice="http://www.icesoft.com/icefaces/component">
10
11 <h:head>
12 <title>IndexMetaContextualizer</title>
13 <ice:outputStyle href="/resources/icefaces/rime/rime.css" />
14 <ice:outputStyle href="/resources/style.css" />
15
16 </h:head>
17 <h:body>
18
19 <ice:outputConnectionStatus />
20
21 <div id="canvas"></div>
22
23 <div id="page">
24 <div id="page-bgtop">
25 <div id="page-bgbtm">
26 <ui:insert name="content" />
27 </div>
28 </div>
29 </div>
30 </h:body>
31 </html>
32
33