/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-24 12:54:32 UTC
  • mto: (15.1.9 magstudentportal-more-db)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: gustav.hartvigsson@gmail.com-20170824125432-97lqtbfdytmbqlij
* Started work on the design
* finished the pseudo-dynamic password generator.

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: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
 
  </h:body>
 
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>
15
19
</html>