567967fdf9
Add a bunch of plugin placeholders in templates
25 lines
1 KiB
HTML
25 lines
1 KiB
HTML
<div class="paging">
|
|
{if="isLoggedIn()"}
|
|
<div class="paging_privatelinks">
|
|
<a href="?privateonly">
|
|
{if="$privateonly"}
|
|
<img src="images/private_16x16_active.png#" width="16" height="16" title="Click to see all links" alt="Click to see all links">
|
|
{else}
|
|
<img src="images/private_16x16.png#" width="16" height="16" title="Click to see only private links" alt="Click to see only private links">
|
|
{/if}
|
|
</a>
|
|
|
|
|
|
</div>
|
|
{/if}
|
|
{loop="$action_plugin"}
|
|
{$value}
|
|
{/loop}
|
|
<div class="paging_linksperpage">
|
|
Links per page: <a href="?linksperpage=20">20</a> <a href="?linksperpage=50">50</a> <a href="?linksperpage=100">100</a>
|
|
<form method="GET" class="linksperpage"><input type="text" name="linksperpage" size="2"></form>
|
|
</div>
|
|
{if="$previous_page_url"} <a href="{$previous_page_url}" class="paging_older">◄Older</a> {/if}
|
|
<div class="paging_current">page {$page_current} / {$page_max} </div>
|
|
{if="$next_page_url"} <a href="{$next_page_url}" class="paging_newer">Newer►</a> {/if}
|
|
</div>
|