1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/shaarli_ynh.git synced 2024-09-03 20:26:10 +02:00
shaarli_ynh/sources/tpl
2013-12-17 01:46:11 +01:00
..
addlink.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
changepassword.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
changetag.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
configure.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
daily.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
dailyrss.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
editlink.html apply modification for multiuser from https://github.com/Roultabie/Shaarli 2013-12-17 01:07:15 +01:00
export.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
import.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
includes.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
install.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
linklist.html apply modification for multiuser from https://github.com/Roultabie/Shaarli 2013-12-17 01:07:15 +01:00
linklist.paging.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
loginform.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
manageusers.html apply modification for multiuser from https://github.com/Roultabie/Shaarli 2013-12-17 01:07:15 +01:00
page.footer.html apply modification for multiuser from https://github.com/Roultabie/Shaarli 2013-12-17 01:07:15 +01:00
page.header.html use ynh sso instead of custom login mechanism 2013-12-17 01:46:11 +01:00
page.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
picwall.html apply modification for multiuser from https://github.com/Roultabie/Shaarli 2013-12-17 01:07:15 +01:00
picwall2.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
readme.txt add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
tagcloud.html add shaarli 0.0.41beta sources 2013-12-15 02:07:05 +01:00
tools.html apply modification for multiuser from https://github.com/Roultabie/Shaarli 2013-12-17 01:07:15 +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>
-----------------------------------------------------