source: extensions/stripped/template/footer.tpl @ 10085

Last change on this file since 10085 was 10085, checked in by Zaphod, 13 years ago

version version 1.3.2 - bug correction in footer.tpl

File size: 2.0 KB
Line 
1<div id="footer">
2        <div id="footer_left">
3               
4                <a name="EoP"></a> <!-- End of Page -->
5               
6                {if isset($USERNAME)}
7                        <div class="footer_login">
8                                {if isset($U_PROFILE)}
9                                         <div class="footer_customize">
10                                                [<a href="{$U_PROFILE}" title="{'customize the appareance of the gallery'|@translate}">{$USERNAME}</a>]&nbsp;
11                                        </div>
12                                {else}
13                                        [{$USERNAME}]&nbsp;
14                                {/if}
15                        </div>
16                {/if}
17
18                {if isset($U_LOGIN)}
19                        <a href="{$U_LOGIN}" rel="nofollow">{'Login'|@translate}</a>
20                {/if}
21
22                {if (isset($U_LOGIN) && isset($U_REGISTER))}-{/if}
23               
24                {if isset($U_REGISTER)}
25                        <a href="{$U_REGISTER}" title="{'Create a new account'|@translate}" rel="nofollow">{'Register'|@translate}</a>
26                {/if}
27
28                {if isset($U_LOGOUT)}
29                        <a href="{$U_LOGOUT}">{'Logout'|@translate}</a>
30                {/if}
31
32                {if (isset($U_LOGOUT) && isset($U_ADMIN))}-{/if}
33
34                {if isset($U_ADMIN)}
35                        <a href="{$U_ADMIN}" title="{'available for administrators only'|@translate}">{'Administration'|@translate}</a>
36                {/if}
37
38        {get_combined_scripts load='footer'}
39
40        {if isset($footer_elements)}
41        {foreach from=$footer_elements item=v}
42        {$v}
43        {/foreach}
44        {/if}
45               
46        </div>
47
48        <div id="copyright">
49          {if isset($CONTACT_MAIL)}
50          {'Contact'|@translate}
51          <a href="mailto:{$CONTACT_MAIL}?subject={'A comment on your site'|@translate|@escape:url}">{'Webmaster'|@translate} - </a>
52          {/if}
53
54          {if isset($debug.TIME) }
55         {'Page generated in'|@translate} {$debug.TIME} ({$debug.NB_QUERIES} {'SQL queries in'|@translate} {$debug.SQL_TIME}) -
56         {/if}
57
58         {* Please, do not remove this copyright. If you really want to,
59                  contact us on http://piwigo.org to find a solution on how
60                  to show the origin of the script...
61          *}
62
63          {'Powered by'|@translate}
64          <a href="{$PHPWG_URL}" class="Piwigo">
65          <span class="Piwigo">Piwigo</span></a>
66          {$VERSION}
67
68        </div>
69</div>
70</div><!-- the_page -->
71{if isset($debug.QUERIES_LIST)}
72<div id="debug">
73{$debug.QUERIES_LIST}
74</div>
75{/if}
76</body>
77</html>
Note: See TracBrowser for help on using the repository browser.