source: extensions/Simple_Grey/header.tpl @ 4710

Last change on this file since 4710 was 4710, checked in by boulde, 14 years ago

remove unused code, add image size limit in themeconf and other suggestions
from EX-FTB, make the theme useable without javascript (show menu & comments),
...

File size: 2.6 KB
Line 
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  <title>{$PAGE_TITLE} :: {$GALLERY_TITLE}</title>
7  <link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}template-common/favicon.ico">
8  <link rel="start" title="{'home'|@translate}" href="{$U_HOME}" >
9  <link rel="search" title="{'Search'|@translate}" href="{$ROOT_URL}search.php" >
10  {if isset($first.U_IMG)   }<link rel="first" title="{'first_page'|@translate}" href="{$first.U_IMG}" >{/if}
11  {if isset($previous.U_IMG)}<link rel="prev" title="{'previous_page'|@translate}" href="{$previous.U_IMG}" >{/if}
12  {if isset($next.U_IMG)    }<link rel="next" title="{'next_page'|@translate}" href="{$next.U_IMG}" >{/if}
13  {if isset($last.U_IMG)    }<link rel="last" title="{'last_page'|@translate}" href="{$last.U_IMG}" >{/if}
14  {if isset($U_UP)          }<link rel="up" title="{'thumbnails'|@translate}" href="{$U_UP}" >{/if}
15  {if isset($U_PREFETCH)}<link rel="prefetch" href="{$U_PREFETCH}">{/if}
16  {if not empty($page_refresh)}<meta http-equiv="refresh" content="{$page_refresh.TIME};url={$page_refresh.U_REFRESH}">{/if}
17  {if isset($U_FEED)}
18  <link rel="alternate" type="application/rss+xml" title="{'Image only RSS feed'|@translate}" href="{$U_FEED_IMAGE_ONLY}">
19  <link rel="alternate" type="application/rss+xml" title="{'Complete RSS feed'|@translate}" href="{$U_FEED}">
20  {/if}
21  <link rel="stylesheet" type="text/css" href="{$ROOT_URL}template/{$themeconf.template}/content.css">
22  <link rel="stylesheet" type="text/css" href="{$ROOT_URL}template/{$themeconf.template}/theme/{$themeconf.theme}/theme.css">
23  <!--  <link rel="stylesheet" type="text/css" href="{$ROOT_URL}template-common/local-layout.css"> -->
24  <noscript><style type="text/css">
25      {literal}#menubar {display: block;} #theComments div {display: block;}{/literal}
26  </style></noscript>
27  {$themeconf.local_head}
28  {if not empty($head_elements)}
29    {foreach from=$head_elements item=elt}{$elt}
30    {/foreach}
31  {/if}
32</head>
33<body id="{$BODY_ID}">
34<div id="the_page">
35  {if not empty($header_msgs)}
36  <div class="header_msgs">
37    {foreach from=$header_msgs item=elt}
38    <p>{$elt}</p>
39    {/foreach}
40  </div>
41  {/if}
42  <div id="theHeader">{$PAGE_BANNER}</div>
43  {if isset($theSwiftHeader)}{$theSwiftHeader}{/if}
44  {if not empty($header_notes)}
45  <div class="header_notes">
46    {foreach from=$header_notes item=elt}
47    <p>{$elt}</p>
48    {/foreach}
49  </div>
50  {/if}
Note: See TracBrowser for help on using the repository browser.