source: trunk/admin/template/goto/footer.tpl @ 5098

Last change on this file since 5098 was 5098, checked in by plg, 14 years ago

feature 1491: administration panel header/footer. Graphicaly outside the
administration theme. The header includes the gallery title with a link to
gallery, a theme changer, an explicit "visit gallery" link, a logout link.
The footer includes links to piwigo.org (homepage, documentation, forum) and
the contact webmaster link.

Due to new header/footer, I've removed the "Links" section in the menubar.

The new footer sticks to the bottom of the browser window.

I've slightly "rounded" grum tabs to look like the menubar borders.

Graphical illustration (top left and bottom left leaves) were removed to
improve readability. They make things beautiful on gallery side, they
decrease usability on admin side.

Piwigo logo was removed to save space on administration footer. It would be
nice to have a small logo to place bottom left in the footer next to
"Powered by Piwigo".

Links>Administration link was replaced by a big link box just above the
menubar.

The H2 was outside the #content box, nearly invisible on top right corner.
Now it is 1) easy to read 2) inside #content.

feature 1490: ability to switch from goto/roma to goto/clear with a single
click in administration header.

The global organisation of the page is quite heavily changed. The global
layout is:

body#theAdminPage
body#theAdminPage > #the_page
body#theAdminPage > #the_page > #pwgHead
body#theAdminPage > #the_page > #pwgMain
body#theAdminPage > #the_page > #pwgMain > #menubar
body#theAdminPage > #the_page > #pwgMain > #content
body#theAdminPage > #the_page > #footer

  • Property svn:eol-style set to LF
File size: 1.6 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{if isset($footer_elements)}
7{foreach from=$footer_elements item=v}
8{$v}
9{/foreach}
10{/if}
11{if isset($debug.QUERIES_LIST)}
12<div id="debug">
13{$debug.QUERIES_LIST}
14</div>
15{/if}
16
17<div id="footer">
18  <div id="piwigoInfos">
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
24  {'Powered by'|@translate}
25  <a href="{$PHPWG_URL}" title="Visit Piwigo project website">
26  <span class="Piwigo">Piwigo</span></a>
27  {$VERSION}
28  | <a class="external" href="{$pwgmenu.WIKI}" title="Read Piwigo Documentation" onclick="window.open(this.href, ''); return false;">{'Documentation'|@translate}</a>
29  | <a class="external" href="{$pwgmenu.FORUM}" title="Get Support on Piwigo Forum" onclick="window.open(this.href, ''); return false;">{'Support'|@translate}</a>
30  </div> <!-- piwigoInfos -->
31
32  <div id="pageInfos">
33 {if isset($debug.TIME) }
34 {'SQL queries in'|@translate} {$debug.TIME} ({$debug.NB_QUERIES} {'SQL queries in'|@translate} {$debug.SQL_TIME}) -
35 {/if}
36
37
38  {'Contact'|@translate}
39  <a href="mailto:{$CONTACT_MAIL}?subject={'title_send_mail'|@translate|@escape:url}">{'Webmaster'|@translate}</a>
40  </div> <!-- pageInfos -->
41
42</div> <!-- footer -->
43</div> <!-- the_page -->
44
45{literal}
46<script type='text/javascript'>
47  $(function() {
48    $('#pwgHead A, #footer A').tipTip({
49        'delay' : 0,
50        'fadeIn' : 200,
51        'fadeOut' : 200,
52    });
53  });
54</script>
55{/literal}
56
57</body>
58</html>
Note: See TracBrowser for help on using the repository browser.