~gctaa/bottlezoo/trunk

« back to all changes in this revision

Viewing changes to 02_urlvars/views/layout.tpl

  • Committer: icabob4 at gmail
  • Date: 2013-07-30 13:59:00 UTC
  • Revision ID: icabob4@gmail.com-20130730135900-rs49ngvpoyin7fu1
simplified templates for first two lessons

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html>
2
 
<html lang="en">
3
 
<head>
4
 
<meta charset="utf-8">
5
 
<title>\\
6
 
%default = "URL Variables"
7
 
{{title if defined('title') else default}}</title>
8
 
<style type="text/css">
9
 
body {
10
 
    margin: 25px;
11
 
    padding: 25px;
12
 
}
13
 
section {
14
 
    border: 1px dotted #555;
15
 
    padding: 15px;
16
 
}
17
 
section p {
18
 
    padding: 25px;
19
 
}
20
 
section p.bigmessage {
21
 
    font-size: 3em;
22
 
    text-align: center;
23
 
    font-weight: bold;
24
 
}
25
 
section h1 {
26
 
    text-align: center;
27
 
}
28
 
section blockquote {
29
 
    text-align: center;
30
 
    font-size: 3em;
31
 
    font-style: italic;
32
 
}
33
 
a, a:visited {
34
 
    color: #663;
35
 
    text-decoration: none;
36
 
}
37
 
th, td {
38
 
    text-align: left;
39
 
    padding: 10px;
40
 
}
41
 
label {
42
 
    display: block;
43
 
    margin: 15px;
44
 
}
45
 
form.buttons {
46
 
    text-align: center;
47
 
}
48
 
footer {
49
 
    margin-top: 25px;
50
 
    text-align: center;
51
 
}
52
 
</style>
53
 
</head>
54
 
<body>
55
 
 
56
 
<section>
57
 
%include
58
 
</section>
59
 
 
60
 
<footer>
61
 
<a href="http://validator.w3.org/check/referer">
62
 
<strong> HTML </strong> Valid! </a> |
63
 
<a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">
64
 
<strong> CSS </strong> Valid! </a>
65
 
</footer>
66
 
 
67
 
</body>
68
 
</html>