8079dfd1cd
* fix duplicate IDs - #paging_older, #paging_newer become classes as the paging is displayed twice (top, bottom) in the linklist * fix duplicate IDs - #paging_privatelinks and #paging_linksperpage become classes * daily links are now valid (use &) * name attribute is not used anymore on a tag in link list * center tag is replaced by CSS in picwall and tag cloud * action in form tag can't be empty, use # instead * fixed configure table with CSS instead of cellpadding, border, and valign * export links are now valid * remove "size" in input tag * Fix missing alt attributes for img elements * tpl/daily: Use HTML entities instead of char escape codes * tpl/export: fix missing </span> closing tag * Remove obsolete language attribute on <script> elements
20 lines
1,011 B
HTML
20 lines
1,011 B
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}
|
|
<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>
|