~cmars/hockeypuck/master

« back to all changes in this revision

Viewing changes to www/templates/layout.tmpl

  • Committer: Casey Marshall
  • Date: 2012-12-04 03:22:21 UTC
  • Revision ID: git-v1:bd158e13017b27f98633caf2b10918c5e623543b
* === added directory instroot, ... scripts/crossbuild.sh:
  - Relocate static system installed files to instroot.
  - Added cross-compilation script. LP: #1086192

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{{define "top"}}
2
 
<!DOCTYPE html>
3
 
<html>
4
 
<head>
5
 
<meta charset="utf-8" />
6
 
<title>{{template "title"}}</title>
7
 
{{template "head"}}
8
 
</head>
9
 
<body>
10
 
<div id="container">
11
 
{{template "page_header"}}
12
 
<div id="main">
13
 
{{end}}
14
 
 
15
 
{{define "bottom"}}
16
 
</div><!-- main -->
17
 
</div><!-- container -->
18
 
{{template "page_footer"}}
19
 
</body>
20
 
</html>
21
 
{{end}}
22
 
 
23
 
{{define "layout"}}
24
 
{{template "top" .}}
25
 
{{template "page_content" .}}
26
 
{{template "bottom" .}}
27
 
{{end}}