source: trunk/admin/themes/default/template/footer.tpl @ 28690

Last change on this file since 28690 was 28690, checked in by mistic100, 10 years ago

clean HTML code of header and footer

  • Property svn:eol-style set to LF
File size: 1.7 KB
Line 
1{*
2          Warning : This is the admin pages footer only
3          don't be confusing with the public page footer
4*}
5</div>{* <!-- pwgMain --> *}
6
7{if isset($footer_elements)}
8{foreach from=$footer_elements item=elt}
9  {$elt}
10{/foreach}
11{/if}
12
13{if isset($debug.QUERIES_LIST)}
14<div id="debug">
15  {$debug.QUERIES_LIST}
16</div>
17{/if}
18
19<div id="footer">
20  <div id="piwigoInfos">
21  {'Powered by'|translate}
22  <a class="externalLink tiptip" href="{$PHPWG_URL}" title="{'Visit Piwigo project website'|translate}"><span class="Piwigo">Piwigo</span></a>
23  {$VERSION}
24  | <a class="externalLink tiptip" href="{$pwgmenu.WIKI}" title="{'Read Piwigo Documentation'|translate}">{'Documentation'|translate}</a>
25  | <a class="externalLink tiptip" href="{$pwgmenu.FORUM}" title="{'Get Support on Piwigo Forum'|translate}">{'Support'|translate}</a>
26  </div>
27
28  <div id="pageInfos">
29    {if isset($debug.TIME) }
30    {'Page generated in'|translate} {$debug.TIME} ({$debug.NB_QUERIES} {'SQL queries in'|translate} {$debug.SQL_TIME}) -
31    {/if}
32
33    {'Contact'|translate}
34    <a href="mailto:{$CONTACT_MAIL}?subject={'A comment on your site'|translate|escape:url}">{'Webmaster'|translate}</a>
35  </div>{* <!-- pageInfos --> *}
36
37</div>{* <!-- footer --> *}
38</div>{* <!-- the_page --> *}
39
40
41{combine_script id='jquery.tipTip' load='footer' path='themes/default/js/plugins/jquery.tipTip.minified.js'}
42{footer_script require='jquery.tipTip'}
43jQuery('.tiptip').tipTip({
44  delay: 0,
45  fadeIn: 200,
46  fadeOut: 200
47});
48
49jQuery('a.externalLink').click(function() {
50  window.open(jQuery(this).attr("href"));
51  return false;
52});
53{/footer_script}
54
55<!-- BEGIN get_combined -->
56{get_combined_scripts load='footer'}
57<!-- END get_combined -->
58
59</body>
60</html>
Note: See TracBrowser for help on using the repository browser.