diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-02-29 01:25:13 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-02-29 01:25:13 +0000 |
commit | ba4f23dd830eedad3de915b6443665ebeb29673c (patch) | |
tree | 968a466bc1337300140a59ad8f1c70da038b9783 /template/yoga/footer.tpl | |
parent | 4621be1005ddab4d3a380ab05a124f99f3e36bea (diff) |
picture, footer and picture modify template migration
git-svn-id: http://piwigo.org/svn/trunk@2227 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/footer.tpl | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/template/yoga/footer.tpl b/template/yoga/footer.tpl index e21969078..37aab1fba 100644 --- a/template/yoga/footer.tpl +++ b/template/yoga/footer.tpl @@ -1,31 +1,32 @@ -<!-- DEV TAG: not smarty migrated --> +{* $Id$ *} <div id="copyright"> <a name="EoP"></a> <!-- End of Page --> - <!-- BEGIN debug --> - {lang:generation_time} {debug.TIME} ({debug.NB_QUERIES} {lang:sql_queries_in} {debug.SQL_TIME}) - - <!-- END debug --> + {if isset($debug.TIME) } + {'generation_time'|@translate} {$debug.TIME} ({$debug.NB_QUERIES} {'sql_queries_in'|@translate} {$debug.SQL_TIME}) - + {/if} - <!-- Please, do not remove this copyright. If you really want to, + {* Please, do not remove this copyright. If you really want to, contact us on http://phpwebgallery.net to find a solution on how - to show the origin of the script...--> + to show the origin of the script... + *} - {lang:powered_by} + {'powered_by'|@translate} <a href="http://www.phpwebgallery.net" class="PWG"> <span class="P">Php</span><span class="W">Web</span><span class="G">Gallery</span></a> - {VERSION} - <!-- BEGIN contact --> - - {lang:send_mail} - <a href="mailto:{contact.MAIL}?subject={L_TITLE_MAIL}">{lang:Webmaster}</a> - <!-- END contact --> + {$VERSION} + {if isset($CONTACT_MAIL)} + - {'send_mail'|@translate} + <a href="mailto:{$CONTACT_MAIL}?subject={'title_send_mail'|@translate|@escape:url}">{'Webmaster'|@translate}</a> + {/if} </div> <!-- copyright --> -<!-- BEGIN footer_element --> -{footer_element.CONTENT} -<!-- END footer_element --> +{if isset($footer_elemets)} +{foreach from=$footer_elements item=v} +{$v} +{/foreach} +{/if} </div> <!-- the_page --> -<!-- BEGIN debug --> - {debug.QUERIES_LIST} -<!-- END debug --> +{if isset($debug.QUERIES_LIST)}{$debug.QUERIES_LIST}{/if} </body> </html> |