6a4872520c
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 |
||
---|---|---|
.. | ||
404.html | ||
addlink.html | ||
changepassword.html | ||
changetag.html | ||
configure.html | ||
daily.html | ||
dailyrss.html | ||
editlink.html | ||
export.bookmarks.html | ||
export.html | ||
feed.atom.html | ||
feed.rss.html | ||
import.html | ||
includes.html | ||
install.html | ||
linklist.html | ||
linklist.paging.html | ||
loginform.html | ||
opensearch.html | ||
page.footer.html | ||
page.header.html | ||
page.html | ||
picwall.html | ||
pluginsadmin.html | ||
readme.txt | ||
tag.cloud.html | ||
thumbnails.html | ||
tools.html |
===== 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> -----------------------------------------------------