source: extensions/PwgCarbon_dft/template/header.tpl @ 19209

Last change on this file since 19209 was 19209, checked in by Miklfe, 11 years ago
File size: 4.0 KB
RevLine 
[18803]1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2<html lang="{$lang_info.code}" dir="{$lang_info.direction}">
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset={$CONTENT_ENCODING}">
5<meta name="generator" content="Piwigo (aka PWG), see piwigo.org">
6{if isset($meta_ref) }
7{if isset($INFO_AUTHOR)}
8<meta name="author" content="{$INFO_AUTHOR|@strip_tags:false|@replace:'"':' '}">
9{/if}
10{if isset($related_tags)}
11<meta name="keywords" content="{foreach from=$related_tags item=tag name=tag_loop}{if !$smarty.foreach.tag_loop.first}, {/if}{$tag.name}{/foreach}">
12{/if}
13{if isset($COMMENT_IMG)}
14<meta name="description" content="{$COMMENT_IMG|@strip_tags:false|@replace:'"':' '}{if isset($INFO_FILE)} - {$INFO_FILE}{/if}">
15{else}
16<meta name="description" content="{$PAGE_TITLE}{if isset($INFO_FILE)} - {$INFO_FILE}{/if}">
17{/if}
18{/if}
19
20{if (isset($REVERSE) and $REVERSE and $PAGE_TITLE == l10n('Home'))}
21<title>{$GALLERY_TITLE} | {$PAGE_TITLE}</title>{else}
22<title>{$PAGE_TITLE} | {$GALLERY_TITLE}</title>{/if}
23<link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}{$themeconf.icon_dir}/favicon.ico">
24
25<link rel="start" title="{'Home'|@translate}" href="{$U_HOME}" >
26<link rel="search" title="{'Search'|@translate}" href="{$ROOT_URL}search.php" >
27{if isset($first.U_IMG)   }<link rel="first" title="{'First'|@translate}" href="{$first.U_IMG}" >{/if}
28{if isset($previous.U_IMG)}<link rel="prev" title="{'Previous'|@translate}" href="{$previous.U_IMG}" >{/if}
29{if isset($next.U_IMG)    }<link rel="next" title="{'Next'|@translate}" href="{$next.U_IMG}" >{/if}
30{if isset($last.U_IMG)    }<link rel="last" title="{'Last'|@translate}" href="{$last.U_IMG}" >{/if}
31{if isset($U_UP)          }<link rel="up" title="{'Thumbnails'|@translate}" href="{$U_UP}" >{/if}
32
33{get_combined_css}
34{foreach from=$themes item=theme}
35{if $theme.load_css}
36{combine_css path="themes/`$theme.id`/theme.css" order=-10}
[19209]37
[18803]38{/if}
39{if !empty($theme.local_head)}{include file=$theme.local_head load_css=$theme.load_css}{/if}
40{/foreach}
41
42
43{if isset($U_PREFETCH)}<link rel="prefetch" href="{$U_PREFETCH}">{/if}
44{if isset($U_CANONICAL)}<link rel="canonical" href="{$U_CANONICAL}">{/if}
45
46{if not empty($page_refresh)    }<meta http-equiv="refresh" content="{$page_refresh.TIME};url={$page_refresh.U_REFRESH}">{/if}
47
48{get_combined_scripts load='header'}
49<!--[if lt IE 7]>
50<script type="text/javascript" src="{$ROOT_URL}themes/default/js/pngfix.js"></script>
51<![endif]-->
52
53{combine_script id="jquery" load="footer"}
54
55{if not empty($head_elements)}
56        {foreach from=$head_elements item=elt}{$elt}
57        {/foreach}
58{/if}
59{combine_script id='menu' load='header' require='jquery' path='themes/PwgCarbon_dft/js/menu.js'}
60{combine_script id='hoverIntent' load='header' require='jquery' path='themes/PwgCarbon_dft/js/jquery.hoverIntent.minified.js'}
61{combine_script id='columnizer' load='header' require='jquery' path='themes/PwgCarbon_dft/js/columnizer.js'}
62</head>
63
64
65<html>
66
67
68
69<body id="{$BODY_ID}">
70
71{if $BODY_ID != 'thePicturePage' and $BODY_ID != 'theAdminPage' }
72{if !empty($PLUGIN_HEADER_ACTIONS)}{$PLUGIN_HEADER_ACTIONS}{/if}
73
74
75
76        {if not empty($header_msgs)}
77                <div class="header_msgs">
78                        {foreach from=$header_msgs item=elt}
79                        {$elt}<br>
80                        {/foreach}
81                </div>
82        {/if}
83       
84<div id="header_bgDef">
85
86                        <div id="Header">
87                                        <div id="header-content">
88                                                <div id="logo"></div>
89                                                <div id="theHeader">{$PAGE_BANNER}</div>
90                                        </div>
91                        </div>         
92               
93       
94</div>
95       
96        <div id="headertransi">
97                <div id="headertransiH"></div>
98                <div id="headertransiB"></div>
99        </div>
100
101        <div id="the_page">
102                <div id="bg_th_left"></div>
103
104        {if isset($theSwiftHeader)}{$theSwiftHeader}{/if}
105                {if not empty($header_notes)}
106                        <div class="header_notes">
107                                {foreach from=$header_notes item=elt}
108                                        <p>{$elt}</p>
109                                {/foreach}
110                        </div>
111                {/if}
112        {/if}   
113                <div id="page_content">
114                        <div id="page_content1">
115                                <div id="page_content2">
Note: See TracBrowser for help on using the repository browser.