1 ===== Shaarli template organisation =====
3 Any Shaarli page should conform to this RainTPL template:
5 -----------------------------------------------------
7 <head>{include="includes"}</head>
9 <div id="pageheader">{include="page.header"}</div>
11 {include="page.footer"}
14 -----------------------------------------------------
16 If you want to also add something in the page header (in the dark area), do it here:
18 <div id="pageheader">{include="page.header"}My menu goes here...</div>
21 Example: "Add new link" form:
22 -----------------------------------------------------
24 <head>{include="includes"}</head>
25 <body onload="document.addform.post.focus();">
27 {include="page.header"}
29 <form method="GET" action="" name="addform" class="addform">
30 <input type="text" name="post" style="width:50%;">
31 <input type="submit" value="Add link" class="bigbutton">
35 {include="page.footer"}
38 -----------------------------------------------------