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