aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/page.footer.html
diff options
context:
space:
mode:
authorSeb Sauvage <seb@sebsauvage.net>2011-12-16 21:27:16 +0100
committerEmilien Klein <emilien+ubuntu@klein.st>2011-12-16 21:27:16 +0100
commit24e267ca714f591921eb659457332c3f7fea1930 (patch)
tree98fc646456708df7d3b133ed7f33835c1f1b059f /tpl/page.footer.html
parent5112a433897d4d6507982b64bb07333b774ddb3a (diff)
downloadShaarli-24e267ca714f591921eb659457332c3f7fea1930.tar.gz
Shaarli-24e267ca714f591921eb659457332c3f7fea1930.tar.zst
Shaarli-24e267ca714f591921eb659457332c3f7fea1930.zip
Version 0.0.32 beta:
- Changed: HTML generation moved to RainTPL templates (in the tpl/ directory). - Added: Better check on URL parameters (patch by gege2061). - Changed: Better detection of HTTPS (patch by gege2061). - Changed: In RSS/ATOM feeds, the GUID is now the permalink instead of the final URL (patch by gege2061). - Changed: Jerrywham CSS patch included. - Changed: Multiple spaces are now respected in description. Thus you can use Shaarli as a personal pastebin (for posting source code, for example). I also ad$ - Corrected: Tab order changed in login screen. - Corrected: Permalinks now work even if additional parameters have been added (eg. /?E8Yj2Q&utm_source=blablabla…) - Corrected: user.css is included only if the file is present (This prevent a useless CSS include which makes a harmless but useless 404 error.). - Removed: Page time generation was removed.
Diffstat (limited to 'tpl/page.footer.html')
-rw-r--r--tpl/page.footer.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/tpl/page.footer.html b/tpl/page.footer.html
new file mode 100644
index 00000000..80a000bb
--- /dev/null
+++ b/tpl/page.footer.html
@@ -0,0 +1,20 @@
1<div id="footer">
2 <b><a href="http://sebsauvage.net/wiki/doku.php?id=php:shaarli">Shaarli {$version}</a></b> - The personal, minimalist, super-fast, no-database delicious clone. By <a href="http://sebsauvage.net" target="_blank">sebsauvage.net</a>. Theme by <a href="http://blog.idleman.fr" target="_blank">idleman.fr</a>.
3</div>
4{if="$newversion"}
5 <div id="newversion"><span style="text-decoration:blink;">&#x25CF;</span> Shaarli {$newversion|htmlspecialchars} is <a href="http://sebsauvage.net/wiki/doku.php?id=php:shaarli#download">available</a>.</div>
6{/if}
7{if="isLoggedIn()"}
8<script language="JavaScript">function confirmDeleteLink() { var agree=confirm("Are you sure you want to delete this link ?"); if (agree) return true ; else return false ; }</script>
9{/if}
10
11{if="$GLOBALS['config']['OPEN_SHAARLI'] || isLoggedIn()"}
12<script language="JavaScript">
13$(document).ready(function()
14{
15 $('#lf_tags').autocomplete({source:'{$source}?ws=tags',minLength:1});
16 $('#searchtags').autocomplete({source:'{$source}?ws=tags',minLength:1});
17 $('#fromtag').autocomplete({source:'{$source}?ws=singletag',minLength:1});
18});
19</script>
20{/if}