/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/WEB-INF/templates/page_header.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"?>
2
1
<!DOCTYPE html>
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
 
      xmlns:pt="http://xmlns.jcp.org/jsf/passthrough">
 
2
<html lang="en" xmlns:h="http://xmlns.jcp.org/jsf/html"
 
3
  xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
 
4
  xmlns:f="http://xmlns.jcp.org/jsf/core"
 
5
  xmlns:pt="http://xmlns.jcp.org/jsf/passthrough">
8
6
<ui:composition>
9
 
    <div class="header_bar">
10
 
        <h1>${pageTitle}</h1>
11
 
        
12
 
    </div>
 
7
  <div class="header_bar">
 
8
    <header>
 
9
      <a href="#{configBean.headerTitleUrl}">
 
10
        <h1>#{configBean.pageTitle}</h1>
 
11
      </a>
 
12
      <a href="#{configBean.headerSubTitleUrl}">
 
13
        <p>#{configBean.subTitle}</p>
 
14
      </a>
 
15
    </header>
 
16
  </div>
13
17
</ui:composition>
14
18
</html>