/magstudentportal/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/magstudentportal/trunk

« back to all changes in this revision

Viewing changes to src/main/webapp/index.xhtml

  • Committer: Gustav Hartvigsson
  • Date: 2017-08-28 14:01:22 UTC
  • mfrom: (15.1.10 magstudentportal-more-db)
  • Revision ID: gustav.hartvigsson@gmail.com-20170828140122-dfqs6oxweh0zjzlj
* Merged stuff into trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8"?>
 
1
<?xml version="1.0" encoding="UTF-8" ?>
2
2
<!DOCTYPE html>
3
3
<html xmlns="http://www.w3.org/1999/xhtml"
4
 
      xmlns:h="http://xmlns.jcp.org/jsf/html"
5
 
      xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
6
 
      xmlns:f="http://xmlns.jcp.org/jsf/core">
7
 
<f:view>
8
 
     <h:outputLabel value="Hello, world"/>
9
 
</f:view>
 
4
  xmlns:ui="http://java.sun.com/jsf/facelets"
 
5
  xmlns:f="http://xmlns.jcp.org/jsf/core"
 
6
  xmlns:h="http://xmlns.jcp.org/jsf/html"
 
7
  xmlns:pt="http://xmlns.jcp.org/jsf/passthrough">
 
8
<h:head>
 
9
  <h:outputStylesheet library="css" name="main.css" />
 
10
  <title>${configBean.pageTitle} - ${configBean.subTitle}</title>
 
11
</h:head>
 
12
<h:body>
 
13
  <ui:decorate template="WEB-INF/templates/page_header.xhtml" />
 
14
 
 
15
  <div class="main-view">
 
16
    <!--  Stuffs goes here. -->
 
17
  </div>
 
18
</h:body>
10
19
</html>