added _class_to_attribute_name method
[catagits/Reaction.git] / share / skin / default / layout / layout.tt
1 =widget Container
2
3 =for layout widget
4 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
7 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
8
9 <head>
10   <title>Component UI Test Title</title>
11   
12   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
13   <link rel="stylesheet" type="text/css" href="/static/componentui-basic.css" />
14
15 </head>
16
17 <body>
18   <div id="container">
19     <div id="header">
20      [% header %]
21     </div>
22
23     <div id="nav">
24        [% menu %]
25     </div>
26
27     <div id="contents">
28       <div id="wrapper">
29         [% sidebar %]
30         [% inner %]
31       </div>
32       <div class="spacer"></div>
33     </div>
34   </div>
35 </body>
36
37 </html>
38
39 =for layout inner
40 <!-- main content start -->
41 [% call_next %]
42 <!-- main content end -->
43 =for layout header
44
45 <h1>Component UI Header</h1>
46
47 =for layout sidebar
48         <div class="sidebar">
49           Nothing to see here. Move along.
50         </div>
51
52 =for layout menu
53         <ul class="menu">
54           <li> <a href="/testmodel/foo">Foo</a> </li>
55           <li> <a href="/testmodel/bar">Bar</a> </li>
56           <li> <a href="/testmodel/baz">Baz</a> </li>
57         </ul>
58 =cut