source: extensions/floPure/header.tpl @ 3333

Last change on this file since 3333 was 3333, checked in by flop25, 15 years ago

first commit

File size: 3.8 KB
Line 
1{* $Id: header.tpl 2381 2008-06-01 19:19:46Z vdigital $ *}
2<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
3"http://www.w3.org/TR/html4/strict.dtd">
4<html lang="{$LANG}" dir="{$DIR}">
5<head>
6<meta http-equiv="Content-Type" content="text/html; charset={$CONTENT_ENCODING}">
7<meta name="generator" content="Piwigo (aka PWG), see piwigo.org">
8<title>{$GALLERY_TITLE} :: {$PAGE_TITLE}</title>
9<link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}template-common/favicon.ico">
10
11<link rel="start" title="{'home'|@translate}" href="{$U_HOME}" >
12<link rel="search" title="{'Search'|@translate}" href="{$ROOT_URL}search.php" >
13{if isset($first.U_IMG)   }<link rel="first" title="{'first_page'|@translate}" href="{$first.U_IMG}" >{/if}
14{if isset($previous.U_IMG)}<link rel="prev" title="{'previous_page'|@translate}" href="{$previous.U_IMG}" >{/if}
15{if isset($next.U_IMG)    }<link rel="next" title="{'next_page'|@translate}" href="{$next.U_IMG}" >{/if}
16{if isset($last.U_IMG)    }<link rel="last" title="{'last_page'|@translate}" href="{$last.U_IMG}" >{/if}
17{if isset($U_UP)          }<link rel="up" title="{'thumbnails'|@translate}" href="{$U_UP}" >{/if}
18
19<link rel="stylesheet" type="text/css" href="{$ROOT_URL}template/{$themeconf.template}/layout.css">
20{* the next css is used to fix khtml (Konqueror/Safari) issue the "text/nonsense" prevents gecko based browsers to load it *}
21<link rel="stylesheet" type="text/nonsense" href="{$ROOT_URL}template/{$themeconf.template}/fix-khtml.css">
22<!--[if lt IE 7]>
23        <link rel="stylesheet" type="text/css" href="{$ROOT_URL}template/{$themeconf.template}/fix-ie5-ie6.css">
24<![endif]-->
25<!--[if gt IE 6]>
26        <link rel="stylesheet" type="text/css" href="{$ROOT_URL}template/{$themeconf.template}/fix-ie7.css">
27<![endif]-->
28<!--[if !IE]> <-->
29        <link rel="stylesheet" href="{$ROOT_URL}template/{$themeconf.template}/not-ie.css" type="text/css">
30<!--> <![endif]-->
31<link rel="stylesheet" type="text/css" media="print" href="{$ROOT_URL}template/{$themeconf.template}/print.css">
32<link rel="stylesheet" type="text/css" href="{$ROOT_URL}template/{$themeconf.template}/default-colors.css">
33<link rel="stylesheet" type="text/css" href="{$ROOT_URL}template/{$themeconf.template}/theme/{$themeconf.theme}/theme.css">
34{$themeconf.local_head}
35{if isset($U_PREFETCH)          }<link rel="prefetch" href="{$U_PREFETCH}">{/if}
36
37{if not empty($page_refresh)    }<meta http-equiv="refresh" content="{$page_refresh.TIME};url={$page_refresh.U_REFRESH}">{/if}
38
39<script type="text/javascript" src="{$ROOT_URL}template-common/scripts.js"></script>
40<!--[if lt IE 7]>
41<style>
42        {* only because we need {$ROOT_URL} otherwise use fix-ie5-ie6.css *}
43        BODY {ldelim} behavior:url("{$ROOT_URL}template-common/csshover.htc"); }
44        A IMG, .button, .icon {ldelim}
45                behavior:url("{$ROOT_URL}template-common/tooltipfix.htc");
46        }
47        FORM {ldelim} behavior: url("{$ROOT_URL}template-common/inputfix.htc"); }
48</style>
49<script type="text/javascript" src="{$ROOT_URL}template-common/pngfix.js"></script>
50<![endif]-->
51
52{if not empty($head_elements)}
53        {foreach from=$head_elements item=elt}{$elt}{/foreach}
54{/if}
55
56</head>
57
58<body id="{$BODY_ID}">
59<div id="the_page">
60
61{if not empty($header_msgs)}
62<div class="header_msgs">
63        {foreach from=$header_msgs item=elt}
64        <p>{$elt}</p>
65        {/foreach}
66</div>
67{/if}
68
69<div id="theHeader">{$PAGE_BANNER}</div>
70{if isset($pwgmenu)}
71<ul class="pwgmenu">
72  <li><a href="{$pwgmenu.WIKI}" onclick="window.open(this.href, ''); return false;"><span class="bg">{'WIKI / DOC'|@translate}</span></a></li>
73  <li><a href="{$pwgmenu.FORUM}" onclick="window.open(this.href, ''); return false;"><span class="bg">{'FORUM'|@translate}</span></a></li>
74</ul>   
75{/if}
76{if not empty($header_notes)}
77<div class="header_notes">
78        {foreach from=$header_notes item=elt}
79        <p>{$elt}</p>
80        {/foreach}
81</div>
82{/if}
Note: See TracBrowser for help on using the repository browser.