Ravi Srinivasan
2018-09-10 41d5004b9e40b9e29b37c26cbd1c154b97e2fe7a
commit | author | age
41d500 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
RS 2     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"
4     xmlns:h="http://java.sun.com/jsf/html"
5     xmlns:ui="http://java.sun.com/jsf/facelets">
6 <h:head>
7     <title><ui:insert name="title">
8                     [Title will be inserted here]
9          </ui:insert>
10     </title>
11     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
12     <h:outputStylesheet name="css/screen.css" />
13 </h:head>
14 <h:body>
15
16     <header>
17         <h:graphicImage name="images/redhat.png" />
18         <div class="right">
19             Application:
20             <ui:insert name="application_name">
21                     [Application name will be inserted here]
22          </ui:insert>
23         </div>
24     </header>
25     <div id="content">
26          <ui:insert name="content">
27                     [Template content will be inserted here]
28          </ui:insert>
29     </div>
30     <footer>
31     JB183 - Enterprise Java Development - Red Hat Training
32     </footer>
33 </h:body>
34 </html>