MyShaarli/tpl
ArthurHoaro 4de71445d3 Daily page: date format in template
It only concerns the date of the day in the main title.

Fixes 

Note that daily RSS feed is not generated through templates. Date are still hard formatted in that case.
2015-06-19 20:23:58 +02:00
..
addlink.html CSS: remove hardcoded style from templates 2014-12-03 19:28:43 +01:00
changepassword.html W3C compliance (work on issue - 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 - 2015-03-12 20:27:16 +01:00
configure.html change wording and variable names for "Hide public links" feature 2015-04-10 20:52:12 +02:00
daily.html Daily page: date format in template 2015-06-19 20:23:58 +02:00
dailyrss.html Fix php error in daily RSS 2015-03-31 20:02:50 +02:00
editlink.html Add Firefox Social API to the tools. Fixes . 2015-05-15 16:18:54 +00:00
export.html W3C compliance (work on issue - https://github.com/shaarli/Shaarli/issues/64): 2015-01-08 10:15:05 +01:00
import.html W3C compliance (work on issue - https://github.com/shaarli/Shaarli/issues/64): 2015-01-08 10:15:05 +01:00
includes.html fix broken URL for user.css 2015-03-05 18:14:25 +01:00
install.html : Make update check optional 2015-02-20 22:49:41 +01:00
linklist.html Define date format in templates instead of index.php. 2015-03-31 13:19:07 +02:00
linklist.paging.html W3C compliance (work on issue - https://github.com/shaarli/Shaarli/issues/64): 2015-01-08 10:15:05 +01:00
loginform.html CSS: remove hardcoded style from templates 2014-12-03 19:28:43 +01:00
page.footer.html doc: point footer link to local html documentation 2015-04-05 22:39:34 +02:00
page.header.html added menu div and cleaned up code 2015-03-11 19:19:04 +01:00
page.html Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
picwall.html picwall: link directly to the target URL (not the permalink) 2015-03-11 19:19:18 +01:00
readme.txt Initial commit (version 0.0.40 beta) 2013-02-26 10:09:41 +01:00
tagcloud.html W3C compliance (work on issue - https://github.com/shaarli/Shaarli/issues/64): 2015-01-08 10:15:05 +01:00
tools.html Add Firefox Social API to the tools. Fixes . 2015-05-15 16:18:54 +00: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>
-----------------------------------------------------