diff options
Diffstat (limited to 'tpl/default/page.footer.html')
-rw-r--r-- | tpl/default/page.footer.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tpl/default/page.footer.html b/tpl/default/page.footer.html new file mode 100644 index 00000000..006d1d68 --- /dev/null +++ b/tpl/default/page.footer.html | |||
@@ -0,0 +1,31 @@ | |||
1 | <div id="footer"> | ||
2 | <strong><a href="https://github.com/shaarli/Shaarli">Shaarli</a></strong> | ||
3 | - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community | ||
4 | - <a href="doc/Home.html" rel="nofollow">Help/documentation</a> | ||
5 | {loop="$plugins_footer.text"} | ||
6 | {$value} | ||
7 | {/loop} | ||
8 | </div> | ||
9 | |||
10 | {loop="$plugins_footer.endofpage"} | ||
11 | {$value} | ||
12 | {/loop} | ||
13 | |||
14 | {if="$newVersion"} | ||
15 | <div id="newversion"> | ||
16 | <span id="version_id">●</span> Shaarli {$newVersion} is | ||
17 | <a href="https://github.com/shaarli/Shaarli/releases">available</a>. | ||
18 | </div> | ||
19 | {/if} | ||
20 | {if="$versionError"} | ||
21 | <div id="newversion"> | ||
22 | Error: {$versionError} | ||
23 | </div> | ||
24 | {/if} | ||
25 | {if="isLoggedIn()"} | ||
26 | <script>function confirmDeleteLink() { var agree=confirm("Are you sure you want to delete this link ?"); if (agree) return true ; else return false ; }</script> | ||
27 | {/if} | ||
28 | |||
29 | {loop="$plugins_footer.js_files"} | ||
30 | <script src="{$value}#"></script> | ||
31 | {/loop} | ||