]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - tpl/readme.txt
Change templates set through administration UI
[github/shaarli/Shaarli.git] / tpl / readme.txt
diff --git a/tpl/readme.txt b/tpl/readme.txt
deleted file mode 100644 (file)
index b18deae..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-===== Shaarli template organisation =====
-
-Any Shaarli page should conform to this RainTPL template:
-
------------------------------------------------------
-<html>
-<head>{include="includes"}</head>
-<body>
-       <div id="pageheader">{include="page.header"}</div>
-    You body goes here...
-    {include="page.footer"}
-</body>
-</html>
------------------------------------------------------
-
-If you want to also add something in the page header (in the dark area), do it here:
-
-<div id="pageheader">{include="page.header"}My menu goes here...</div>
-
-
-Example: "Add new link" form:
------------------------------------------------------
-<html>
-<head>{include="includes"}</head>
-<body onload="document.addform.post.focus();">
-<div id="pageheader">
-       {include="page.header"}
-       <div id="headerform">
-               <form method="GET" action="" name="addform" class="addform">
-                       <input type="text" name="post" style="width:50%;"> 
-                       <input type="submit" value="Add link" class="bigbutton">
-               </form>
-       </div>
-</div>
-{include="page.footer"}
-</body>
-</html>
------------------------------------------------------
-
-
-
-