aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/linklist.paging.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-01-14 15:51:30 +0100
committerArthurHoaro <arthur@hoa.ro>2017-02-27 20:01:54 +0100
commit009ce9358168cc06c76fc2f4162829e552e633a3 (patch)
tree43b251326a24c6600acead1c406f7c18f291be8e /tpl/default/linklist.paging.html
parent9e5a37cc7f4eb1c83222a94eb83d4e99ce4460a4 (diff)
downloadShaarli-009ce9358168cc06c76fc2f4162829e552e633a3.tar.gz
Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.tar.zst
Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.zip
Move default template to vintage folder
Diffstat (limited to 'tpl/default/linklist.paging.html')
-rw-r--r--tpl/default/linklist.paging.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/tpl/default/linklist.paging.html b/tpl/default/linklist.paging.html
deleted file mode 100644
index 86019c01..00000000
--- a/tpl/default/linklist.paging.html
+++ /dev/null
@@ -1,32 +0,0 @@
1<div class="paging">
2{if="isLoggedIn()"}
3 <div class="paging_privatelinks">
4 <a href="?privateonly">
5 {if="$privateonly"}
6 <img src="images/private_16x16_active.png#" width="16" height="16" title="Click to see all links" alt="Click to see all links">
7 {else}
8 <img src="images/private_16x16.png#" width="16" height="16" title="Click to see only private links" alt="Click to see only private links">
9 {/if}
10 </a>
11
12
13 </div>
14{/if}
15 {loop="$action_plugin"}
16 <div class="paging_privatelinks">
17 <a
18 {loop="$value.attr"}
19 {$key}="{$value}"
20 {/loop}>
21 {$value.html}
22 </a>
23 </div>
24 {/loop}
25 <div class="paging_linksperpage">
26 Links per page: <a href="?linksperpage=20">20</a> <a href="?linksperpage=50">50</a> <a href="?linksperpage=100">100</a>
27 <form method="GET" class="linksperpage"><input type="text" name="linksperpage" size="2"></form>
28 </div>
29 {if="$previous_page_url"} <a href="{$previous_page_url}" class="paging_older">&#x25C4;Older</a> {/if}
30 <div class="paging_current">page {$page_current} / {$page_max} </div>
31 {if="$next_page_url"} <a href="{$next_page_url}" class="paging_newer">Newer&#x25BA;</a> {/if}
32</div>