MyShaarli/tpl/myShaarli_Columns
Knah Tsaeb da3abc7591 Fix search tag style 2016-09-16 10:47:07 +02:00
..
addlink.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
changepassword.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
changetag.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
columns.css Fix search tag style 2016-09-16 10:47:07 +02:00
configure.html [add] support of Wallabag V2 + option in config manager 2016-08-25 14:11:43 +02:00
daily.html [fix] path of image 2015-07-20 16:31:10 +02:00
dailyrss.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
editlink.html [fix] path of image 2015-07-20 16:34:19 +02:00
export.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
import.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
includes.html [add] implemented opensearch plugins 2016-06-08 11:01:13 +02:00
install.html [upd] better install form 2015-07-21 14:50:34 +02:00
linklist.html Fix search tag style 2016-09-16 10:47:07 +02:00
linklist.paging.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
loginform.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
opensearch.html [add] implemented opensearch plugins 2016-06-08 11:01:13 +02:00
page.footer.html [fix] bad link for myShaarli repo 2016-06-14 11:41:43 +02:00
page.header.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
page.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
picwall.html [chg] change some class for theme compatibility 2015-07-20 15:10:22 +02:00
picwall2.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
readme.txt [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
tagcloud.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00
tools.html [add] new template system inspired by communauty fork 2015-07-17 13:49:55 +02:00

readme.txt

===== 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>
-----------------------------------------------------