Refactored template loading to its own class for performance
[biaweb2.git] / templates / main.tpl.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <!-- change as appropriate - just don't touch anything within the curly braces!! -->
5 <title>My Site - {title}</title>
6 <meta name="keywords" content="site key words {keywords}">
7 <meta name="description" content="Site Description - {description}">
8 <!-- change base href to your site URL -->
9 <base href="http://my.site">
10 <style>
11 {stylesheet}
12 </style>
13 </head>
14 <body>
15 <!-- change My Site to your own header -->
16 <header><h1>My Site</h1></header>
17 <section id="content">
18 <div id="modification">Created on: {cdate:%d %b %Y, %H:%M %Z},
19 last modified: {mdate:%d %b %Y, %H:%M %Z}</div>
20 {navbit}
21 {contents}
22 </section>
23 <nav id="sidebar">
24 {sidebar}
25 </nav>
26 <footer>
27 <!-- change copyright to your own copyright -->
28 My copyright
29 </footer>
30 </body>
31 </html>