MyShaarli/tpl/default
Knah Tsaeb 81b9c01366 Rename Default to default 2016-12-08 09:46:34 +01:00
..
404.html Rename Default to default 2016-12-08 09:46:34 +01:00
addlink.html Rename Default to default 2016-12-08 09:46:34 +01:00
changepassword.html Rename Default to default 2016-12-08 09:46:34 +01:00
changetag.html Rename Default to default 2016-12-08 09:46:34 +01:00
configure.html Rename Default to default 2016-12-08 09:46:34 +01:00
daily.html Rename Default to default 2016-12-08 09:46:34 +01:00
dailyrss.html Rename Default to default 2016-12-08 09:46:34 +01:00
editlink.html Rename Default to default 2016-12-08 09:46:34 +01:00
export.bookmarks.html Rename Default to default 2016-12-08 09:46:34 +01:00
export.html Rename Default to default 2016-12-08 09:46:34 +01:00
feed.atom.html Rename Default to default 2016-12-08 09:46:34 +01:00
feed.rss.html Rename Default to default 2016-12-08 09:46:34 +01:00
import.html Rename Default to default 2016-12-08 09:46:34 +01:00
includes.html Rename Default to default 2016-12-08 09:46:34 +01:00
install.html Rename Default to default 2016-12-08 09:46:34 +01:00
linklist.html Rename Default to default 2016-12-08 09:46:34 +01:00
linklist.paging.html Rename Default to default 2016-12-08 09:46:34 +01:00
loginform.html Rename Default to default 2016-12-08 09:46:34 +01:00
opensearch.html Rename Default to default 2016-12-08 09:46:34 +01:00
page.footer.html Rename Default to default 2016-12-08 09:46:34 +01:00
page.header.html Rename Default to default 2016-12-08 09:46:34 +01:00
page.html Rename Default to default 2016-12-08 09:46:34 +01:00
picwall.html Rename Default to default 2016-12-08 09:46:34 +01:00
pluginsadmin.html Rename Default to default 2016-12-08 09:46:34 +01:00
readme.txt Rename Default to default 2016-12-08 09:46:34 +01:00
reset.css Rename Default to default 2016-12-08 09:46:34 +01:00
shaarli.css Rename Default to default 2016-12-08 09:46:34 +01:00
tagcloud.html Rename Default to default 2016-12-08 09:46:34 +01:00
tools.html Rename Default to default 2016-12-08 09:46:34 +01: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>
-----------------------------------------------------