source: trunk/admin/template/yoga/header.tpl @ 2415

Last change on this file since 2415 was 2415, checked in by vdigital, 16 years ago

Reversed logic for backgrounds
$tabsheet transfer: general use available in admin.tpl
Some CSS admin simplications

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1{* $Id: header.tpl 2415 2008-07-02 06:40:13Z vdigital $ *}
2{*
3
4
5          Warning : This is the admin pages header only
6          don't be confusing with the public page header
7
8*}
9<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
10"http://www.w3.org/TR/html4/strict.dtd">
11<html lang="{$LANG}" dir="{$DIR}">
12<head>
13<meta http-equiv="Content-Type" content="text/html; charset={$CONTENT_ENCODING}">
14<meta name="generator" content="Piwigo (aka PWG), see piwigo.org">
15<title>{$GALLERY_TITLE} :: {$PAGE_TITLE}</title>
16<link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}template-common/favicon.ico">
17
18<link rel="stylesheet" type="text/css" href="{$ROOT_URL}admin/template/{$themeconf.template}/layout.css">
19<!--[if lt IE 7]>
20        <link rel="stylesheet" type="text/css" href="{$ROOT_URL}admin/template/{$themeconf.template}/fix-ie5-ie6.css">
21<![endif]-->
22<link rel="stylesheet" type="text/css" media="print" href="{$ROOT_URL}template/{$themeconf.template}/print.css">
23<link rel="stylesheet" type="text/css" href="{$ROOT_URL}admin/template/{$themeconf.template}/default-colors.css">
24<link rel="stylesheet" type="text/css" href="{$ROOT_URL}admin/template/{$themeconf.template}/theme/{$themeconf.theme}/theme.css">
25{$themeconf.local_head}
26<script type="text/javascript" src="{$ROOT_URL}template-common/scripts.js"></script>
27<!--[if lt IE 7]>
28<style>
29        {* only because we need {$ROOT_URL} otherwise use fix-ie5-ie6.css *}
30        BODY {ldelim} behavior:url("{$ROOT_URL}template-common/csshover.htc"); }
31        A IMG, .button, .icon {ldelim}
32                behavior:url("{$ROOT_URL}template-common/tooltipfix.htc");
33        }
34        FORM {ldelim} behavior: url("{$ROOT_URL}template-common/inputfix.htc"); }
35</style>
36<script type="text/javascript" src="{$ROOT_URL}template-common/pngfix.js"></script>
37<![endif]-->
38
39{if not empty($head_elements)}
40        {foreach from=$head_elements item=elt}{$elt}{/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        <p>{$elt}</p>
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        <p>{$elt}</p>
62        {/foreach}
63</div>
64{/if}
Note: See TracBrowser for help on using the repository browser.