diff options
author | mistic100 <mistic@piwigo.org> | 2014-06-13 19:10:41 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2014-06-13 19:10:41 +0000 |
commit | b153d19474c6cc1a48ba73df15f65b27bae9fc4f (patch) | |
tree | 891570bee41ba9f2727a8b20ccab25a424252bed /themes/default/template/footer.tpl | |
parent | 5e3e65e9f2f624008c8a55775c78d6dfa85bbbf7 (diff) |
clean HTML code of header and footer
git-svn-id: http://piwigo.org/svn/trunk@28690 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | themes/default/template/footer.tpl | 52 |
1 files changed, 29 insertions, 23 deletions
diff --git a/themes/default/template/footer.tpl b/themes/default/template/footer.tpl index 08c94fb4f..a62b27a18 100644 --- a/themes/default/template/footer.tpl +++ b/themes/default/template/footer.tpl @@ -1,34 +1,40 @@ <div id="copyright"> -{if isset($debug.TIME)} - {'Page generated in'|@translate} {$debug.TIME} ({$debug.NB_QUERIES} {'SQL queries in'|@translate} {$debug.SQL_TIME}) - -{/if} + {if isset($debug.TIME)} + {'Page generated in'|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, - contact us on http://piwigo.org to find a solution on how - to show the origin of the script... + Please, do not remove this copyright. If you really want to, + contact us on http://piwigo.org to find a solution on how + to show the origin of the script... *} - {'Powered by'|@translate} <a href="{$PHPWG_URL}" class="Piwigo">Piwigo</a> - {$VERSION} - {if isset($CONTACT_MAIL)} - - <a href="mailto:{$CONTACT_MAIL}?subject={'A comment on your site'|@translate|@escape:url}">{'Contact webmaster'|@translate}</a> - {/if} - {if isset($TOGGLE_MOBILE_THEME_URL)} - - {'View in'|@translate} : <a href="{$TOGGLE_MOBILE_THEME_URL}">{'Mobile'|@translate}</a> | <b>{'Desktop'|@translate}</b> - {/if} -{get_combined_scripts load='footer'} + {'Powered by'|translate} <a href="{$PHPWG_URL}" class="Piwigo">Piwigo</a> + {$VERSION} + {if isset($CONTACT_MAIL)} + - <a href="mailto:{$CONTACT_MAIL}?subject={'A comment on your site'|translate|@escape:url}">{'Contact webmaster'|translate}</a> + {/if} + {if isset($TOGGLE_MOBILE_THEME_URL)} + - {'View in'|translate} : <a href="{$TOGGLE_MOBILE_THEME_URL}">{'Mobile'|translate}</a> | <b>{'Desktop'|translate}</b> + {/if} + + {if isset($footer_elements)} + {foreach from=$footer_elements item=elt} + {$elt} + {/foreach} + {/if} +</div>{* <!-- copyright --> *} -{if isset($footer_elements)} -{foreach from=$footer_elements item=v} -{$v} -{/foreach} -{/if} -</div> {* copyright *} {if isset($debug.QUERIES_LIST)} <div id="debug"> -{$debug.QUERIES_LIST} + {$debug.QUERIES_LIST} </div> {/if} -</div>{* the_page *} +</div>{* <!-- the_page --> *} + +<!-- BEGIN get_combined --> +{get_combined_scripts load='footer'} +<!-- END get_combined --> + </body> </html>
\ No newline at end of file |