source: trunk/admin/template/goto/header.tpl @ 4423

Last change on this file since 4423 was 3283, checked in by plg, 15 years ago

complement to r3282, remove all $Id$ in source code.

  • Property svn:eol-style set to LF
File size: 2.2 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 PUBLIC "-//W3C//DTD HTML 4.01//EN"
8"http://www.w3.org/TR/html4/strict.dtd">
9<html lang="{$lang_info.code}" dir="{$lang_info.direction}">
10<head>
11<meta http-equiv="Content-Type" content="text/html; charset={$CONTENT_ENCODING}">
12<meta name="generator" content="Piwigo (aka PWG), see piwigo.org">
13<title>{$GALLERY_TITLE} :: {$PAGE_TITLE}</title>
14<link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}template-common/favicon.ico">
15
16<link rel="stylesheet" type="text/css" href="{$ROOT_URL}admin/template/{$themeconf.template}/layout.css">
17<!--[if lt IE 7]>
18  <link rel="stylesheet" type="text/css" href="{$ROOT_URL}admin/template/{$themeconf.template}/fix-ie5-ie6.css">
19<![endif]-->
20<link rel="stylesheet" type="text/css" href="{$ROOT_URL}admin/template/{$themeconf.template}/default-colors.css">
21<link rel="stylesheet" type="text/css" href="{$ROOT_URL}admin/template/{$themeconf.template}/theme/{$themeconf.theme}/theme.css">
22{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js" now=1} {*jQuery is always available by default*}
23{$themeconf.local_head}
24<script type="text/javascript" src="{$ROOT_URL}template-common/scripts.js"></script>
25<!--[if lt IE 7]>
26<style>
27  {* only because we need {$ROOT_URL} otherwise use fix-ie5-ie6.css *}
28  BODY {ldelim} behavior:url("{$ROOT_URL}template-common/csshover.htc"); }
29  A IMG, .button, .icon {ldelim}
30    behavior:url("{$ROOT_URL}template-common/tooltipfix.htc");
31  }
32  FORM {ldelim} behavior: url("{$ROOT_URL}template-common/inputfix.htc"); }
33</style>
34<script type="text/javascript" src="{$ROOT_URL}template-common/pngfix.js"></script>
35<![endif]-->
36
37{if not empty($head_elements)}
38{foreach from=$head_elements item=elt}
39{$elt}
40{/foreach}
41{/if}
42
43</head>
44
45<body id="{$BODY_ID}">
46<div id="headbranch"></div> {* Dummy block for double background management *}
47<div id="the_page">
48
49{if not empty($header_msgs)}
50<div class="header_msgs">
51  {foreach from=$header_msgs item=elt}
52  {$elt}
53  {/foreach}
54</div>
55{/if}
56
57<div id="theHeader">{*$PAGE_BANNER*}</div>
58{if not empty($header_notes)}
59<div class="header_notes">
60  {foreach from=$header_notes item=elt}
61  {$elt}
62  {/foreach}
63</div>
64{/if}
Note: See TracBrowser for help on using the repository browser.