VERSION UPDATE: beta 0.6.0 see the readme.md document
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"navigation" :
|
||||
{
|
||||
"Home": { "link": "/", "tooltip": "Home", "icon": "icon icon-home" }
|
||||
"Home": { "link": "/", "tooltip": "Home", "icon": "icon icon-home", "footer": "false" }
|
||||
}
|
||||
}
|
||||
16
application/view/templates/pageination.tpl
Executable file
16
application/view/templates/pageination.tpl
Executable file
@@ -0,0 +1,16 @@
|
||||
<!-- This file is just for an idea of the integration concerning a pagination -->
|
||||
<div class="pagination">
|
||||
<ul>
|
||||
<li class="prev"><a href="{$pagination.paginationPath}{$pagination.previous}"><i class="pe-7s-angle-left pe-2x"></i></a></li>
|
||||
{foreach item=page from=$pagination key="key"}
|
||||
{if $key|@is_numeric}
|
||||
{if $page.page==$pagination.current}
|
||||
<li class="active"><a href="{$pagination.paginationPath}{$page.page}">{$page.page}</a></li>
|
||||
{else}
|
||||
<li><a href="{$pagination.paginationPath}{$page.page}">{$page.page}</a></li>
|
||||
{/if}
|
||||
{/if}
|
||||
{/foreach}
|
||||
<li class="next"><a href="{$pagination.paginationPath}{$pagination.next}"><i class="pe-7s-angle-right pe-2x"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
Reference in New Issue
Block a user