source: trunk/themes/default/template/header.tpl @ 28690

Last change on this file since 28690 was 28690, checked in by mistic100, 10 years ago

clean HTML code of header and footer

  • Property svn:eol-style set to LF
File size: 2.8 KB
Line 
1<!DOCTYPE html>
2<html lang="{$lang_info.code}" dir="{$lang_info.direction}">
3<head>
4<meta charset="{$CONTENT_ENCODING}">
5<meta name="generator" content="Piwigo (aka PWG), see piwigo.org">
6
7{if isset($meta_ref)}
8{if isset($INFO_AUTHOR)}
9<meta name="author" content="{$INFO_AUTHOR|strip_tags:false|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<title>{if $PAGE_TITLE!=l10n('Home') && $PAGE_TITLE!=$GALLERY_TITLE}{$PAGE_TITLE} | {/if}{$GALLERY_TITLE}</title>
22<link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}{$themeconf.icon_dir}/favicon.ico">
23
24<link rel="start" title="{'Home'|translate}" href="{$U_HOME}" >
25<link rel="search" title="{'Search'|translate}" href="{$ROOT_URL}search.php" >
26
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{if isset($U_PREFETCH)    }<link rel="prefetch" href="{$U_PREFETCH}">{/if}
34{if isset($U_CANONICAL)   }<link rel="canonical" href="{$U_CANONICAL}">{/if}
35
36{if not empty($page_refresh)}<meta http-equiv="refresh" content="{$page_refresh.TIME};url={$page_refresh.U_REFRESH}">{/if}
37
38{strip}
39{foreach from=$themes item=theme}
40  {if $theme.load_css}
41  {combine_css path="themes/`$theme.id`/theme.css" order=-10}
42  {/if}
43  {if !empty($theme.local_head)}
44  {include file=$theme.local_head load_css=$theme.load_css}
45  {/if}
46{/foreach}
47
48{combine_script id="jquery" load="footer"}
49{/strip}
50
51<!-- BEGIN get_combined -->
52{get_combined_css}
53
54{get_combined_scripts load='header'}
55<!-- END get_combined -->
56
57<!--[if lt IE 7]>
58<script type="text/javascript" src="{$ROOT_URL}themes/default/js/pngfix.js"></script>
59<![endif]-->
60
61{if not empty($head_elements)}
62{foreach from=$head_elements item=elt}
63  {$elt}
64{/foreach}
65{/if}
66</head>
67
68<body id="{$BODY_ID}">
69
70<div id="the_page">
71
72{if not empty($header_msgs)}
73<div class="header_msgs">
74  {foreach from=$header_msgs item=elt}
75  {$elt}<br>
76  {/foreach}
77</div>
78{/if}
79
80<div id="theHeader">{$PAGE_BANNER}</div>
81
82{if not empty($header_notes)}
83<div class="header_notes">
84  {foreach from=$header_notes item=elt}
85  <p>{$elt}</p>
86  {/foreach}
87</div>
88{/if}
Note: See TracBrowser for help on using the repository browser.