MyShaarli/tpl
Sebastien SAUVAGE 246e9b4e37 Removed jQuery from almost all pages
jQuery has been removed from all pages, except those who really require
it (like autocomplete in link edition).
Immediate gain: All pages weight 286 kb LESS !   \o/
Highlighting in search results has also been temporarly removed (and
will be re-implemented).
2013-09-25 21:27:50 +02:00
..
addlink.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
changepassword.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
changetag.html Removed jQuery from almost all pages 2013-09-25 21:27:50 +02:00
configure.html [add] https://github.com/sebsauvage/Shaarli/issues/20 New links created as private by default. 2013-03-04 10:18:39 +01:00
daily.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
dailyrss.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
editlink.html Removed jQuery from almost all pages 2013-09-25 21:27:50 +02:00
export.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
import.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
includes.html Removed jQuery from almost all pages 2013-09-25 21:27:50 +02:00
install.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
linklist.html Removed jQuery from almost all pages 2013-09-25 21:27:50 +02:00
linklist.paging.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
loginform.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
page.footer.html Removed jQuery from almost all pages 2013-09-25 21:27:50 +02:00
page.header.html Corrected vulnerabilities (see report below) 2013-03-03 22:15:38 +01:00
page.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
picwall.html Removed jQuery from almost all pages 2013-09-25 21:27:50 +02:00
picwall2.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
readme.txt Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
tagcloud.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
tools.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +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>
-----------------------------------------------------