JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
metaform: ship basic stylesheet with layout
[wfpl.git] / metaform / site-template.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4         <meta charset="utf-8" />
5         <title>~main-title html~</title>
6         <!--[if lt IE 9]>
7                 <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
8         <![endif]-->
9         <script>less = {env:'development'};</script>
10         <link rel="stylesheet/less" href="style_01.less" />
11         <script src="http://lesscss.googlecode.com/files/less-1.0.41.min.js"></script>
12         <!--~extra-headers~-->
13 </head>
14
15 <body>
16         <div id="centerer">
17                 <header>
18                         <h2>Header</h2>
19                 </header>
20
21                 <nav>
22                         <a href="#">nav link 1</a>
23                         <a href="#">nav link 2</a>
24                 </nav>
25
26                 <div id="main-body">
27                         <!--~wfpl_messages once_if {~-->
28                                 <div id="wfpl_messages">
29                                         <!--~wfpl_messages {~-->
30                                                 <p>~data html~</p>
31                                                 <!--~ sep {~-->
32                                                         <hr>
33                                                 <!--~}~-->
34                                         <!--~}~-->
35                                 </div>
36                         <!--~}~-->
37
38                         <article>
39                                 ~main_body~
40                         </article>
41
42                 </div>
43                 <footer>
44                         <p>footer</p>
45                 </footer>
46         </div>
47 </body>
48 </html>