source: flexiblewikiplugin/0.11/tracflexwiki/templates/site_example.html

Last change on this file was 7816, checked in by Alexey Kinyov, 13 years ago

flexiblewikiplugin: example for site.html - site_example.html

File size: 924 bytes
Line 
1<html xmlns="http://www.w3.org/1999/xhtml"
2      xmlns:py="http://genshi.edgewall.org/"
3      py:strip="">
4     
5  <head py:match="head" py:attrs="select('@*')">
6    ${select('*|comment()|text()')}
7    <style>
8        #table-main-wrapper { width: 100%; margin:0; padding:0; }
9        #left-side { vertical-align: top; padding-top: 130px; }
10        #right-side { padding-left: 60px; }
11        #left-side ul, #left-side li { list-style: none; padding-left: 0; }
12        #left-side li { margin-left: 0px; }
13        #left-side ul { margin-left: 20px; }
14    </style>
15  </head>
16
17  <body py:match="body" py:attrs="select('@*')">
18   
19    <table id="table-main-wrapper">
20    <tr>
21        <td id="left-side">
22            ${wiki_to_html(context, "[[TracFlexWikiTree]]")}
23        </td>
24        <td id="right-side">
25            ${select('*|text()')}
26        </td>
27    </tr>
28    </table>
29
30  </body>
31</html>
Note: See TracBrowser for help on using the repository browser.