0073bfc55f83e62a646088d5000725d77e753851
[biaweb2.git] / templates / main.tpl.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <title>My Site - %s</title>
5 <meta name="keywords" content="%s">
6 <meta name="description" content="%s">
7 <!-- change base href to your site URL -->
8 <base href="http://my.site">
9 <style>
10 body {
11 background-color: whitesmoke;
12 font-family:Arial, Helvetica, sans-serif;
13 font-size: 0.9em;
14 margin: 0;
15 padding: 0;
16 }
17 h1, h2, h3, h4, h5, h6 {
18 font-family: Georgia, 'Times New Roman', Times, serif;
19 }
20 div#header {
21 width: 100%;
22 color: white;
23 background-color:#a1a0c0;
24 height: 50px;
25 float: left;
26 }
27 div#modification {
28 width: 100%;
29 color: darkslateblue;
30 font-size: 0.9em;
31 float:left;
32 }
33 div#footer {
34 width: 100%;
35 text-align: center;
36 background-color: #a1a0c0;
37 color: white;
38 float:left;
39 }
40 div#sidebar {
41 float :right;
42 background-color: darkslateblue;
43 color: white;
44 width: 30%;
45 padding: 1%;
46 }
47 div#sidebar a, div#sidebar a:visited {
48 color: white;
49 }
50
51 div#content {
52 width: 63%;
53 margin-right:1%;
54 margin-left: 1%;
55 float: left;
56 }
57 </style>
58 </head>
59 <body>
60 <div id="header"></div>
61 <div id="content">
62 <div id="modification">Created on: %s, last modified: %s</div>
63 %s
64 </div>
65 <div id="sidebar">
66 %s
67 </div>
68 <div id ="footer">
69 My copyright
70 </div>
71
72 </body>
73 </html>