source: trunk/admin/themes/default/template/header.tpl @ 28689

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

remove admin IE 6/7/8 fixes

  • Property svn:eol-style set to LF
File size: 2.0 KB
Line 
1{*
2
3          Warning : This is the admin pages header only
4          don't confuse with the public page header
5
6*}
7<!DOCTYPE html>
8<html lang="{$lang_info.code}" dir="{$lang_info.direction}">
9<head>
10<meta charset="{$CONTENT_ENCODING}">
11<title>{$GALLERY_TITLE} :: {$PAGE_TITLE}</title>
12<link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}{$themeconf.icon_dir}/favicon.ico">
13
14{get_combined_css}
15{foreach from=$themes item=theme}
16{if $theme.load_css}
17{combine_css path="admin/themes/`$theme.id`/theme.css" order=-10}
18{/if}
19{if !empty($theme.local_head)}{include file=$theme.local_head load_css=$theme.load_css}{/if}
20{/foreach}
21{combine_css path="admin/themes/default/fontello/css/fontello.css"}
22
23<!-- BEGIN get_combined_scripts -->
24{get_combined_scripts load='header'}
25<!-- END get_combined_scripts -->
26
27{combine_script id='jquery' path='themes/default/js/jquery.min.js'}
28
29{if not empty($head_elements)}
30{foreach from=$head_elements item=elt}
31{$elt}
32{/foreach}
33{/if}
34
35</head>
36
37<body id="{$BODY_ID}">
38
39<div id="the_page">
40
41{if not empty($header_msgs)}
42<div class="header_msgs">
43  {foreach from=$header_msgs item=elt}
44  {$elt}
45  {/foreach}
46</div>
47{/if}
48
49<div id="pwgHead">
50  <h1>
51    <a href="{$U_RETURN}" title="{'Visit Gallery'|@translate}">
52                        <span class="icon-home" style="font-size:larger"></span>
53                        {$GALLERY_TITLE}
54    </a>
55  </h1>
56
57  <div id="headActions">
58    {'Hello'|@translate} {$USERNAME} |
59    <a class="icon-eye" href="{$U_RETURN}">{'Visit Gallery'|@translate}</a> |
60    <a class="icon-brush" href="{$U_CHANGE_THEME}" title="{'Switch to clear or dark colors for administration'|@translate}">{'Change Admin Colors'|@translate}</a> |
61    <a class="icon-help-circled" href="{$U_FAQ}" title="{'Instructions to use Piwigo'|@translate}">{'Help Me'|@translate}</a> |
62    <a class="icon-logout" href="{$U_LOGOUT}">{'Logout'|@translate}</a>
63  </div>
64</div>
65
66<div style="clear:both;"></div>
67
68{if not empty($header_notes)}
69<div class="header_notes">
70  {foreach from=$header_notes item=elt}
71  {$elt}
72  {/foreach}
73</div>
74{/if}
75
76<div id="pwgMain">
Note: See TracBrowser for help on using the repository browser.