diff options
author | plegall <plg@piwigo.org> | 2010-03-09 20:17:00 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-03-09 20:17:00 +0000 |
commit | c9dfb3a41f0341531594de215a25d7cb0091ca56 (patch) | |
tree | 3d7ca60026e80650cb47aaadabb38646d5213438 /template/yoga/navigation_bar.tpl | |
parent | d63e90c5d022d5b88b66c33972533bab20edcec5 (diff) |
feature 1494: move all *.tpl files from template/yoga to the new
template/default (from which yoga derives)
git-svn-id: http://piwigo.org/svn/trunk@5095 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/navigation_bar.tpl')
-rw-r--r-- | template/yoga/navigation_bar.tpl | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/template/yoga/navigation_bar.tpl b/template/yoga/navigation_bar.tpl deleted file mode 100644 index 82c66bd15..000000000 --- a/template/yoga/navigation_bar.tpl +++ /dev/null @@ -1,28 +0,0 @@ -<div class="navigationBar"> - {if isset($navbar.URL_FIRST)} - <a href="{$navbar.URL_FIRST}" rel="first">{'First'|@translate}</a> | - <a href="{$navbar.URL_PREV}" rel="prev">{'Previous'|@translate}</a> | - {else} - {'First'|@translate} | - {'Previous'|@translate} | - {/if} - - {assign var='prev_page' value=0} - {foreach from=$navbar.pages key=page item=url} - {if $page > $prev_page+1}...{/if} - {if $page == $navbar.CURRENT_PAGE} - <span class="pageNumberSelected">{$page}</span> - {else} - <a href="{$url}">{$page}</a> - {/if} - {assign var='prev_page' value=$page} - {/foreach} - - {if isset($navbar.URL_NEXT)} - | <a href="{$navbar.URL_NEXT}" rel="next">{'Next'|@translate}</a> - | <a href="{$navbar.URL_LAST}" rel="last">{'Last'|@translate}</a> - {else} - | {'Next'|@translate} - | {'Last'|@translate} - {/if} -</div> |