~gctaa/bottlezoo/trunk

« back to all changes in this revision

Viewing changes to 01_helloworld/views/template.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>Hello World In A Bottle</title>
6
 
<style type="text/css">
7
 
body {
8
 
    margin: 25px;
9
 
    padding: 25px;
10
 
}
11
 
section {
12
 
    border: 1px dotted #555;
13
 
}
14
 
section p {
15
 
    padding: 25px;
16
 
    text-align: center;
17
 
    font-size: 3em;
18
 
    font-weight: bold;
19
 
}
20
 
a, a:visited {
21
 
    color: #663;
22
 
    text-decoration: none;
23
 
}
24
 
footer {
25
 
    margin-top: 5px;
26
 
    text-align: center;
27
 
}
28
 
</style>
29
 
</head>
30
 
<body>
31
 
 
32
 
<section>
33
 
<p>{{message}}</p>
34
 
</section>
35
 
 
36
 
<footer>
37
 
<a href="http://validator.w3.org/check/referer">
38
 
<strong> HTML </strong> Valid! </a> |
39
 
<a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">
40
 
<strong> CSS </strong> Valid! </a>
41
 
</footer>
42
 
 
43
 
</body>
44
 
</html>