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

Last change on this file since 23029 was 23029, checked in by rvelices, 11 years ago

feature 2916 Replace raphael with symbol fonts
I added more icons than before (I think it's better as we can find links faster but that's arguable ...)

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