source: extensions/sobre/template/header.tpl @ 6001

Last change on this file since 6001 was 6001, checked in by Gotcha, 14 years ago

Compatible with r5991

File size: 4.4 KB
Line 
1{* $ Id: header.tpl 2010-04-03 Par Gotcha pour son thème "Sobre" $ *}
2<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
3<html lang="{$lang_info.code}" dir="{$lang_info.direction}">
4<head>
5<meta http-equiv="Content-Type" content="text/html; charset={$CONTENT_ENCODING}">
6<meta name="generator" content="Piwigo (aka PWG), see piwigo.org">
7{if isset($meta_ref) }
8{if isset($INFO_AUTHOR)}
9<meta name="author" content="{$INFO_AUTHOR|@replace:'"':' '}">
10{/if}
11{if isset($related_tags)}
12<meta name="keywords" content="{foreach from=$related_tags item=tag name=tag_loop}{if !$smarty.foreach.tag_loop.first}, {/if}{$tag.name}{/foreach}">
13{/if}
14{if isset($COMMENT_IMG)}
15<meta name="description" content="{$COMMENT_IMG|@strip_tags:false|@replace:'"':' '}{if isset($INFO_FILE)} - {$INFO_FILE}{/if}">
16{else}
17<meta name="description" content="{$PAGE_TITLE}{if isset($INFO_FILE)} - {$INFO_FILE}{/if}">
18{/if}
19{/if}
20
21{if (isset($REVERSE) and $REVERSE and $PAGE_TITLE == l10n('Home'))}
22<title>{$GALLERY_TITLE} | {$PAGE_TITLE}</title>{else}
23<title>{$PAGE_TITLE} | {$GALLERY_TITLE}</title>{/if}
24<link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}{$themeconf.icon_dir}/favicon.ico">
25
26<link rel="start" title="{'Home'|@translate}" href="{$U_HOME}" >
27<link rel="search" title="{'Search'|@translate}" href="{$ROOT_URL}search.php" >
28{if isset($first.U_IMG)   }<link rel="first" title="{'First'|@translate}" href="{$first.U_IMG}" >{/if}
29{if isset($previous.U_IMG)}<link rel="prev" title="{'Previous'|@translate}" href="{$previous.U_IMG}" >{/if}
30{if isset($next.U_IMG)    }<link rel="next" title="{'Next'|@translate}" href="{$next.U_IMG}" >{/if}
31{if isset($last.U_IMG)    }<link rel="last" title="{'Last'|@translate}" href="{$last.U_IMG}" >{/if}
32{if isset($U_UP)          }<link rel="up" title="{'Thumbnails'|@translate}" href="{$U_UP}" >{/if}
33
34{foreach from=$themes item=theme}
35{if $theme.load_css}
36<link rel="stylesheet" type="text/css" href="{$ROOT_URL}themes/{$theme.id}/theme.css">
37{/if}
38{if isset($theme.local_head)}{include file=$theme.local_head}{/if}
39{/foreach}
40{* the next css is used to fix khtml (Konqueror/Safari) issue the "text/nonsense" prevents gecko based browsers to load it *}
41<link rel="stylesheet" type="text/nonsense" href="{$ROOT_URL}themes/default/fix-khtml.css">
42<!--[if lt IE 7]>
43        <link rel="stylesheet" type="text/css" href="{$ROOT_URL}themes/default/fix-ie5-ie6.css">
44<![endif]-->
45<!--[if IE 7]>
46        <link rel="stylesheet" type="text/css" href="{$ROOT_URL}themes/default/fix-ie7.css">
47<![endif]-->
48<!--[if !IE]> <-->
49        <link rel="stylesheet" href="{$ROOT_URL}themes/default/not-ie.css" type="text/css">
50<!--> <![endif]-->
51<link rel="stylesheet" type="text/css" media="print" href="{$ROOT_URL}themes/default/print.css">
52
53{if isset($U_PREFETCH)          }<link rel="prefetch" href="{$U_PREFETCH}">{/if}
54
55{if not empty($page_refresh)    }<meta http-equiv="refresh" content="{$page_refresh.TIME};url={$page_refresh.U_REFRESH}">{/if}
56
57<script type="text/javascript" src="{$ROOT_URL}themes/default/js/scripts.js"></script>
58<!--[if lt IE 7]>
59<script type="text/javascript" src="{$ROOT_URL}themes/default/js/pngfix.js"></script>
60<![endif]-->
61
62{if not empty($head_elements)}
63        {foreach from=$head_elements item=elt}{$elt}
64        {/foreach}
65{/if}
66
67
68<script type="text/javascript" src="themes/sobre/CSS.js"></script>
69<script type="text/javascript">
70<!--
71Name_motor = navigator.product;
72Version_Motor = navigator.productSub;
73
74if ((Name_motor=="Gecko" && Version_Motor>="20100115")
75  || (BrowserDetect.browser=="Firefox" && BrowserDetect.version>=3.5)
76  || (BrowserDetect.browser=="Safari" && BrowserDetect.version>=3.1)
77  || (BrowserDetect.browser=="Opera" && BrowserDetect.version>=10)
78  || (BrowserDetect.browser=="Chrome" && BrowserDetect.version>=4))
79  document.write('<link rel="stylesheet" type="text/css" href="themes/sobre/CSS3.css">');
80// -->
81</script>
82
83{known_script id="jquery" src=$ROOT_URL|cat:"themes/default/js/jquery.packed.js"}
84
85
86</head>
87
88<body id="{$BODY_ID}">
89<div id="the_page">
90
91{if not empty($header_msgs)}
92<div class="header_msgs">
93        {foreach from=$header_msgs item=elt}
94        {$elt}<br />
95        {/foreach}
96</div>
97{/if}
98
99<div id="theHeader">{$PAGE_BANNER}</div>
100{if isset($theSwiftHeader)}{$theSwiftHeader}{/if}
101{if not empty($header_notes)}
102<div class="header_notes">
103        {foreach from=$header_notes item=elt}
104        <p>{$elt}</p>
105        {/foreach}
106</div>
107{/if}
Note: See TracBrowser for help on using the repository browser.