MyShaarli/tpl/vintage
ArthurHoaro 28f2652460 Add a page to update all thumbnails through AJAX requests in both templates 2018-07-05 20:34:22 +02:00
..
404.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
addlink.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
changepassword.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
changetag.html Webpack / Update front paths in template files 2018-03-28 19:01:17 +02:00
configure.html Add a page to update all thumbnails through AJAX requests in both templates 2018-07-05 20:34:22 +02:00
daily.html Login: update PageBuilder and default/vintage templates 2018-06-02 16:46:06 +02:00
dailyrss.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
editlink.html Webpack / Update front paths in template files 2018-03-28 19:01:17 +02:00
export.bookmarks.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
export.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
feed.atom.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
feed.rss.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
import.html Fix a warning generated in return_bytes function and refactor it 2017-04-03 18:53:43 +02:00
includes.html add loading user css at last to vintage tpl 2018-04-13 14:06:27 +01:00
install.html Apply the new timezone template variables to the vintage theme 2017-04-04 18:44:24 +02:00
linklist.html Update thumbnail integration after rebasing the branch 2018-07-05 20:31:35 +02:00
linklist.paging.html Login: update PageBuilder and default/vintage templates 2018-06-02 16:46:06 +02:00
loginform.html fix: IP ban check for the Vintage theme 2018-03-24 21:55:03 +01:00
opensearch.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
page.footer.html Login: update PageBuilder and default/vintage templates 2018-06-02 16:46:06 +02:00
page.header.html Login: update PageBuilder and default/vintage templates 2018-06-02 16:46:06 +02:00
page.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
picwall.html Update thumbnail integration after rebasing the branch 2018-07-05 20:31:35 +02:00
pluginsadmin.html Webpack / Update front paths in template files 2018-03-28 19:01:17 +02:00
readme.txt Move default template to vintage folder 2017-02-27 20:01:54 +01:00
tag.cloud.html Move tagcloud template file to tag.cloud 2017-05-25 15:05:24 +02:00
thumbnails.html Add a page to update all thumbnails through AJAX requests in both templates 2018-07-05 20:34:22 +02:00
tools.html Webpack / Update front paths in template files 2018-03-28 19:01:17 +02: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>
-----------------------------------------------------