Advertisement
nxkoncept

abp_code

Jan 8th, 2012
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.56 KB | None | 0 0
  1. {paginate}
  2.   <div class="pagination">
  3.     {if abp_entry_from > 1}<a href="{abp_first_link}">First</a>{/if}
  4.    
  5.     {if abp_has_previous}<a href="{abp_previous_link}">Prev</a>
  6.     {if:else}
  7.     {/if}
  8.    
  9.     {abp_pages}
  10.       {if abp_is_current}<span class="current">{abp_num}</span>
  11.       {if:else}<a href="{abp_link}">{abp_num}</a>
  12.       {/if}
  13.     {/abp_pages}
  14.    
  15.     {if abp_has_next}<a href="{abp_next_link}">Next</a>
  16.     {if:else}
  17.     {/if}
  18.    
  19.     {if abp_entry_to < abp_total_entries}<a href="{abp_last_link}">Last</a>{/if}
  20.   </div>
  21. {/paginate}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement