MyShaarli/tpl/vintage
2020-07-23 21:19:21 +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 Fix all relative link to work with new URL 2020-07-23 21:19:21 +02:00
daily.html Initialize admin Slim controllers 2020-07-23 21:19:21 +02:00
dailyrss.html Process Daily RSS feed through Slim controller 2020-07-23 21:19:21 +02:00
editlink.html Apply the new system (Bookmark + Service) to the whole code base 2020-01-18 09:55:59 +01:00
error.html Render login page through Slim controller 2020-01-26 11:34:14 +01: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 Process OpenSearch controller through Slim 2020-07-23 21:19:21 +02:00
feed.rss.html Process OpenSearch controller through Slim 2020-07-23 21:19:21 +02:00
import.html Fix all relative link to work with new URL 2020-07-23 21:19:21 +02:00
includes.html Process OpenSearch controller through Slim 2020-07-23 21:19:21 +02:00
install.html Apply the new timezone template variables to the vintage theme 2017-04-04 18:44:24 +02:00
linklist.html Process remove tag endpoint through Slim controller 2020-07-23 21:19:21 +02:00
linklist.paging.html Process session filters through Slim controllers 2020-07-23 21:19:21 +02:00
loginform.html Render login page through Slim controller 2020-01-26 11:34:14 +01:00
opensearch.html RSS/ATOM feeds: process through Slim controller 2020-07-23 21:19:21 +02:00
page.footer.html tpl: default/vintage: pluginsadmin: fix link to documentation 2018-07-12 22:12:55 +02:00
page.header.html Process tools page through Slim controller 2020-07-23 21:19:21 +02:00
page.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
picwall.html Fix a bug making thumbnail to request the current page 2018-08-14 11:43:54 +02:00
pluginsadmin.html Fix all relative link to work with new URL 2020-07-23 21:19:21 +02:00
readme.txt Move default template to vintage folder 2017-02-27 20:01:54 +01:00
tag.cloud.html Few optimizations and code readability for tag cloud controller 2020-07-23 21:19:21 +02:00
thumbnails.html Fix deprecated use of implode 2020-01-23 22:31:51 +01:00
tools.html Fix all relative link to work with new URL 2020-07-23 21:19:21 +02: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>
-----------------------------------------------------