diff options
author | ArthurHoaro <arthur@hoa.ro> | 2016-02-16 23:11:36 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2016-08-07 12:17:27 +0200 |
commit | 4ed6d1babe673a38351e66da991db1cb8e2cb70c (patch) | |
tree | 88cd53480da886fdf550fcb54757427a63b3d558 /tpl/default/page.footer.html | |
parent | 341dac14f0f5e3ab368e8dba88612e35ffc979a1 (diff) | |
download | Shaarli-4ed6d1babe673a38351e66da991db1cb8e2cb70c.tar.gz Shaarli-4ed6d1babe673a38351e66da991db1cb8e2cb70c.tar.zst Shaarli-4ed6d1babe673a38351e66da991db1cb8e2cb70c.zip |
Work on the menu
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..8e380087 --- /dev/null +++ b/tpl/default/page.footer.html | |||
@@ -0,0 +1,31 @@ | |||
1 | <div id="footer"> | ||
2 | <b><a href="https://github.com/shaarli/Shaarli">Shaarli</a></b> - The personal, minimalist, super-fast, no-database delicious clone by the <a href="https://github.com/shaarli/Shaarli">Shaarli</a> community - <a href="doc/Home.html">Help/documentation</a> | ||
3 | {loop="$plugins_footer.text"} | ||
4 | {$value} | ||
5 | {/loop} | ||
6 | </div> | ||
7 | |||
8 | {loop="$plugins_footer.endofpage"} | ||
9 | {$value} | ||
10 | {/loop} | ||
11 | |||
12 | {if="$newVersion"} | ||
13 | <div id="newversion"> | ||
14 | <span id="version_id">●</span> Shaarli {$newVersion} is | ||
15 | <a href="https://github.com/shaarli/Shaarli/releases">available</a>. | ||
16 | </div> | ||
17 | {/if} | ||
18 | {if="$versionError"} | ||
19 | <div id="newversion"> | ||
20 | Error: {$versionError} | ||
21 | </div> | ||
22 | {/if} | ||
23 | {if="isLoggedIn()"} | ||
24 | <script>function confirmDeleteLink() { var agree=confirm("Are you sure you want to delete this link ?"); if (agree) return true ; else return false ; }</script> | ||
25 | {/if} | ||
26 | |||
27 | {loop="$plugins_footer.js_files"} | ||
28 | <script src="{$value}#"></script> | ||
29 | {/loop} | ||
30 | |||
31 | <script src="js/shaarli.js"></script> \ No newline at end of file | ||