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

Last change on this file since 19233 was 19233, checked in by rvelices, 11 years ago

bug 2772: remove "Home" from html title pages on index pages - partial revert change of breadcrumb title on home page

  • Property svn:eol-style set to LF
File size: 2.8 KB
RevLine 
[18756]1<!DOCTYPE html>
[2651]2<html lang="{$lang_info.code}" dir="{$lang_info.direction}">
[859]3<head>
[2240]4<meta http-equiv="Content-Type" content="text/html; charset={$CONTENT_ENCODING}">
[2342]5<meta name="generator" content="Piwigo (aka PWG), see piwigo.org">
[3041]6{if isset($meta_ref) }
7{if isset($INFO_AUTHOR)}
[6714]8<meta name="author" content="{$INFO_AUTHOR|@strip_tags:false|@replace:'"':' '}">
[3041]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)}
[3120]14<meta name="description" content="{$COMMENT_IMG|@strip_tags:false|@replace:'"':' '}{if isset($INFO_FILE)} - {$INFO_FILE}{/if}">
[3041]15{else}
16<meta name="description" content="{$PAGE_TITLE}{if isset($INFO_FILE)} - {$INFO_FILE}{/if}">
17{/if}
18{/if}
[19233]19<title>{if $PAGE_TITLE!=l10n('Home') && $PAGE_TITLE!=$GALLERY_TITLE}{$PAGE_TITLE} | {/if}{$GALLERY_TITLE}</title>
[5123]20<link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}{$themeconf.icon_dir}/favicon.ico">
[2240]21
[5021]22<link rel="start" title="{'Home'|@translate}" href="{$U_HOME}" >
[2289]23<link rel="search" title="{'Search'|@translate}" href="{$ROOT_URL}search.php" >
[5021]24{if isset($first.U_IMG)   }<link rel="first" title="{'First'|@translate}" href="{$first.U_IMG}" >{/if}
25{if isset($previous.U_IMG)}<link rel="prev" title="{'Previous'|@translate}" href="{$previous.U_IMG}" >{/if}
26{if isset($next.U_IMG)    }<link rel="next" title="{'Next'|@translate}" href="{$next.U_IMG}" >{/if}
27{if isset($last.U_IMG)    }<link rel="last" title="{'Last'|@translate}" href="{$last.U_IMG}" >{/if}
28{if isset($U_UP)          }<link rel="up" title="{'Thumbnails'|@translate}" href="{$U_UP}" >{/if}
[2240]29
[7987]30{get_combined_css}
[5123]31{foreach from=$themes item=theme}
[5991]32{if $theme.load_css}
[7987]33{combine_css path="themes/`$theme.id`/theme.css" order=-10}
[5991]34{/if}
[7987]35{if !empty($theme.local_head)}{include file=$theme.local_head load_css=$theme.load_css}{/if}
[5123]36{/foreach}
37
[7987]38
[13048]39{if isset($U_PREFETCH)}<link rel="prefetch" href="{$U_PREFETCH}">{/if}
40{if isset($U_CANONICAL)}<link rel="canonical" href="{$U_CANONICAL}">{/if}
[2240]41
42{if not empty($page_refresh)    }<meta http-equiv="refresh" content="{$page_refresh.TIME};url={$page_refresh.U_REFRESH}">{/if}
[7987]43
44{get_combined_scripts load='header'}
[1181]45<!--[if lt IE 7]>
[5129]46<script type="text/javascript" src="{$ROOT_URL}themes/default/js/pngfix.js"></script>
[905]47<![endif]-->
[2240]48
[13763]49{combine_script id="jquery" load="footer"}
[13683]50
[2240]51{if not empty($head_elements)}
[3041]52        {foreach from=$head_elements item=elt}{$elt}
53        {/foreach}
[2240]54{/if}
55
[859]56</head>
57
[6461]58<body id="{$BODY_ID}">
[859]59<div id="the_page">
[2240]60
61{if not empty($header_msgs)}
[1414]62<div class="header_msgs">
[2240]63        {foreach from=$header_msgs item=elt}
[3185]64        {$elt}<br>
[2240]65        {/foreach}
[1414]66</div>
[2240]67{/if}
68
69<div id="theHeader">{$PAGE_BANNER}</div>
[2487]70{if isset($theSwiftHeader)}{$theSwiftHeader}{/if}
[2240]71{if not empty($header_notes)}
[1677]72<div class="header_notes">
[2240]73        {foreach from=$header_notes item=elt}
74        <p>{$elt}</p>
[6004]75        {/foreach}
[1677]76</div>
[2240]77{/if}
Note: See TracBrowser for help on using the repository browser.