MyShaarli/tpl/vintage
ArthurHoaro 6a4872520c Automatically retrieve description for new bookmarks
If the option is enabled, it will try to find a meta tag containing
the page description and keywords, just like we do for the page title.
It will either look for regular meta tag or OpenGraph ones.

The option is disabled by default.

Note that keywords meta tags is mostly not used.

In `configure` template, the variable associated with this setting
is `$retrieve_description`.

Fixes #1302
2019-07-06 12:21:52 +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 Automatically retrieve description for new bookmarks 2019-07-06 12:21:52 +02:00
daily.html Daily - display the current day instead of the previous one 2019-05-25 16:40:45 +02:00
dailyrss.html Fix fatal error on daily page: use new thumbnail system 2018-07-29 17:49:53 +02: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 fix: ensure HTML tags are stripped from OpenGraph description 2019-01-18 22:58:09 +01:00
install.html Apply the new timezone template variables to the vintage theme 2017-04-04 18:44:24 +02:00
linklist.html Fix a bug making thumbnail to request the current page 2018-08-14 11:43:54 +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 tpl: default/vintage: pluginsadmin: fix link to documentation 2018-07-12 22:12:55 +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 Fix a bug making thumbnail to request the current page 2018-08-14 11:43:54 +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 Remove Firefox Social API shaare 2018-07-28 11:26:12 +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>
-----------------------------------------------------