MyShaarli/tpl/vintage
ArthurHoaro 9d4736a3e9 Add a filter to only display public links
When the key filter is clicked once, it only displays private link. When it is clicked on again, it becomes red and only public links are displayed. Another click and all links are displayed. The current visibility status is shown in the search banner

Fixes #1030
2017-12-16 14:32:56 +01:00
..
css Apply the new timezone template variables to the vintage theme 2017-04-04 18:44:24 +02:00
images Move default template to vintage folder 2017-02-27 20:01:54 +01:00
js Apply the new timezone template variables to the vintage theme 2017-04-04 18:44:24 +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 Move default template to vintage folder 2017-02-27 20:01:54 +01:00
configure.html Rename title link label to home link and apply it in vintage theme 2017-05-03 19:16:40 +02:00
daily.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
dailyrss.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
editlink.html Move default template to vintage folder 2017-02-27 20:01:54 +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 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 Move default template to vintage folder 2017-02-27 20:01:54 +01:00
install.html Apply the new timezone template variables to the vintage theme 2017-04-04 18:44:24 +02:00
linklist.html Empty tag search will look for not tagged links 2017-05-25 15:51:12 +02:00
linklist.paging.html Add a filter to only display public links 2017-12-16 14:32:56 +01:00
loginform.html new setting: default value for 'remember me' checkbox 2017-08-27 16:03:37 +02:00
opensearch.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
page.footer.html Apply the new timezone template variables to the vintage theme 2017-04-04 18:44:24 +02:00
page.header.html Rename title link label to home link and apply it in vintage theme 2017-05-03 19:16:40 +02:00
page.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
picwall.html Move default template to vintage folder 2017-02-27 20:01:54 +01:00
pluginsadmin.html Move default template to vintage folder 2017-02-27 20:01:54 +01: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
tools.html Add Note bookmarklet #580 2017-05-25 15:34:26 +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>
-----------------------------------------------------