MyShaarli/tpl/Default
2016-12-07 11:58:25 +01:00
..
404.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
addlink.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
changepassword.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
changetag.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
configure.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
daily.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
dailyrss.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
editlink.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
export.bookmarks.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
export.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
feed.atom.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
feed.rss.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
import.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
includes.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
install.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
linklist.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
linklist.paging.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
loginform.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
opensearch.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
page.footer.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
page.header.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
page.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
picwall.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
pluginsadmin.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
readme.txt #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
reset.css #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
shaarli.css #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
tagcloud.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00
tools.html #502 Change templates set through administration UI 2016-12-07 11:58:25 +01:00

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