MyShaarli/tpl
ArthurHoaro c6d876bb2a Set updated date for items in feeds
RSS doesn't support updated date for items, so we use the ATOM extension.
Updated dates also bump the global update
2016-08-03 09:54:57 +02:00
..
404.html fix whitespace 2016-01-22 17:24:15 +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 Fix variable in configure.php 2016-07-10 10:42:21 +02:00
daily.html Rename configuration keys and fix GLOBALS in templates 2016-06-11 09:30:56 +02:00
dailyrss.html Rename configuration keys and fix GLOBALS in templates 2016-06-11 09:30:56 +02:00
editlink.html Rename configuration keys and fix GLOBALS in templates 2016-06-11 09:30:56 +02:00
export.bookmarks.html Refactor Netscape bookmark exporting 2016-04-10 21:28:04 +02:00
export.html Export: allow prepending notes with the Shaarli instance's URL 2016-05-06 16:12:46 +02:00
feed.atom.html Set updated date for items in feeds 2016-08-03 09:54:57 +02:00
feed.rss.html Set updated date for items in feeds 2016-08-03 09:54:57 +02: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 Save the update date in LinkDB and pass it to linklist templates 2016-08-03 09:44:04 +02:00
linklist.paging.html Template upgrade to handle plugin zones 2015-11-07 15:27:22 +01:00
loginform.html Prefill the login field when the authentication has failed 2016-05-06 20:03:10 +02:00
opensearch.html Fixes #176 - Add opensearch functionality 2015-11-17 20:19:44 +01:00
page.footer.html Remove delicious from Shaarli description 2016-05-08 18:58:59 +02:00
page.header.html Replace $GLOBALS configuration with the configuration manager in the whole code base 2016-06-11 09:30:56 +02:00
page.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
picwall.html URL encode links when a redirector is set. 2015-11-26 20:14:38 +01:00
pluginsadmin.html Fixes #494: inputs & labels with plugin name 2016-02-23 10:48:35 -03:00
readme.txt Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
tagcloud.html Fixes #526: bad font size separator in tagcloud with some locale 2016-03-31 18:01:05 +02:00
tools.html Merge pull request #570 from ArthurHoaro/config-manager 2016-07-09 07:19:48 +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>
-----------------------------------------------------