MyShaarli/tpl
ArthurHoaro 8f8113b94b Fixes #176 - Add opensearch functionality
* add a new page in Router: do=opensearch which displays the opensearch plugin
 * using base64 compressed image to avoid issue encountered with HTTPS
2015-11-17 20:19:44 +01:00
..
addlink.html CSS: remove hardcoded style from templates 2014-12-03 19:28:43 +01:00
changepassword.html W3C compliance (work on issue #64 - https://github.com/shaarli/Shaarli/issues/64): 2015-01-08 10:15:05 +01:00
changetag.html Use awesomplete as autocomplete lib and remove jQuery - shaarli/Shaarli#148 2015-03-12 20:27:16 +01:00
configure.html Template upgrade to handle plugin zones 2015-11-07 15:27:22 +01:00
daily.html Template upgrade to handle plugin zones 2015-11-07 15:27:22 +01:00
dailyrss.html Include the whole <item> in dailyRSS 2015-07-11 10:25:25 +02:00
editlink.html Template upgrade to handle plugin zones 2015-11-07 15:27:22 +01:00
export.html W3C compliance (work on issue #64 - https://github.com/shaarli/Shaarli/issues/64): 2015-01-08 10:15:05 +01:00
import.html Working on shaarli/Shaarli#224 2015-06-23 16:35:36 +02:00
includes.html Fixes #176 - Add opensearch functionality 2015-11-17 20:19:44 +01:00
install.html shaarli/Shaarli#34: Make update check optional 2015-02-20 22:49:41 +01:00
linklist.html Template upgrade to handle plugin zones 2015-11-07 15:27:22 +01:00
linklist.paging.html Template upgrade to handle plugin zones 2015-11-07 15:27:22 +01:00
loginform.html Working on shaarli/Shaarli#224 2015-06-23 16:35:36 +02:00
opensearch.html Fixes #176 - Add opensearch functionality 2015-11-17 20:19:44 +01:00
page.footer.html Template upgrade to handle plugin zones 2015-11-07 15:27:22 +01:00
page.header.html Handle errors raised by plugins in template. fixes #370 2015-11-08 13:22:44 +01:00
page.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
picwall.html Template upgrade to handle plugin zones 2015-11-07 15:27:22 +01:00
readme.txt Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
tagcloud.html Template upgrade to handle plugin zones 2015-11-07 15:27:22 +01:00
tools.html Template upgrade to handle plugin zones 2015-11-07 15:27:22 +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>
-----------------------------------------------------