source: extensions/Full_Background/template/footer.tpl @ 28523

Last change on this file since 28523 was 19033, checked in by Miklfe, 11 years ago
File size: 1.5 KB
Line 
1<div id="footer" class="footer visible">
2{footer_script require='jquery'}
3{literal}
4 $(".fullscreen").toggle($(document).fullScreen() != null);
5function fullscreen()
6{
7$(document).toggleFullScreen();
8
9}
10{/literal}{/footer_script}
11<div id="fullscreen" class="fullscreen">
12        <a href="#" onclick="fullscreen()">{'Fullscreen'|@translate}</a>
13</div>
14<div id="copyright">
15{if isset($debug.TIME)}
16        {'Page generated in'|@translate} {$debug.TIME} ({$debug.NB_QUERIES} {'SQL queries in'|@translate} {$debug.SQL_TIME}) -
17{/if}
18{*
19        Please, do not remove this copyright. If you really want to,
20                        contact us on http://piwigo.org to find a solution on how
21                        to show the origin of the script...
22*}
23        {'Powered by'|@translate}       <a href="{$PHPWG_URL}" class="Piwigo">Piwigo</a>
24        {$VERSION}
25        {if isset($CONTACT_MAIL)}
26        - <a href="mailto:{$CONTACT_MAIL}?subject={'A comment on your site'|@translate|@escape:url}">{'Contact webmaster'|@translate}</a>
27        {/if}
28        - {'theme by'|@translate}       
29                                                <a href="http://piwitheme.fr" target="_blank">piwitheme</a>
30        {if isset($TOGGLE_MOBILE_THEME_URL)}
31        - {'View in'|@translate} : <a href="{$TOGGLE_MOBILE_THEME_URL}">{'Mobile'|@translate}</a> | <b>{'Desktop'|@translate}</b>
32        {/if}
33
34{get_combined_scripts load='footer'}
35
36{if isset($footer_elements)}
37{foreach from=$footer_elements item=v}
38{$v}
39{/foreach}
40{/if}
41</div> {* copyright *}
42{if isset($debug.QUERIES_LIST)}
43<div id="debug">
44{$debug.QUERIES_LIST}
45</div>
46{/if}
47</div>{* footer *}
48</body>
49</html>
Note: See TracBrowser for help on using the repository browser.