annotate themes/bluemarine/page.tpl.php @ 18:f5131a9cd9e5

Added tag 6.8 for changeset 8e6257f3ae39
author Franck Deroche <webmaster@defr.org>
date Tue, 23 Dec 2008 14:32:55 +0100
parents c1f4ac30525a
children
rev   line source
webmaster@1 1 <?php
webmaster@1 2 // $Id: page.tpl.php,v 1.28 2008/01/24 09:42:52 goba Exp $
webmaster@1 3 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
webmaster@1 4 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
webmaster@1 5
webmaster@1 6 <head>
webmaster@1 7 <title><?php print $head_title ?></title>
webmaster@1 8 <?php print $head ?>
webmaster@1 9 <?php print $styles ?>
webmaster@1 10 <?php print $scripts ?>
webmaster@1 11 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
webmaster@1 12 </head>
webmaster@1 13
webmaster@1 14 <body>
webmaster@1 15
webmaster@1 16 <table border="0" cellpadding="0" cellspacing="0" id="header">
webmaster@1 17 <tr>
webmaster@1 18 <td id="logo">
webmaster@1 19 <?php if ($logo) { ?><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
webmaster@1 20 <?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
webmaster@1 21 <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
webmaster@1 22 </td>
webmaster@1 23 <td id="menu">
webmaster@1 24 <?php if (isset($secondary_links)) { ?><?php print theme('links', $secondary_links, array('class' => 'links', 'id' => 'subnavlist')) ?><?php } ?>
webmaster@1 25 <?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?><?php } ?>
webmaster@1 26 <?php print $search_box ?>
webmaster@1 27 </td>
webmaster@1 28 </tr>
webmaster@1 29 <tr>
webmaster@1 30 <td colspan="2"><div><?php print $header ?></div></td>
webmaster@1 31 </tr>
webmaster@1 32 </table>
webmaster@1 33
webmaster@1 34 <table border="0" cellpadding="0" cellspacing="0" id="content">
webmaster@1 35 <tr>
webmaster@1 36 <?php if ($left) { ?><td id="sidebar-left">
webmaster@1 37 <?php print $left ?>
webmaster@1 38 </td><?php } ?>
webmaster@1 39 <td valign="top">
webmaster@1 40 <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
webmaster@1 41 <div id="main">
webmaster@1 42 <?php print $breadcrumb ?>
webmaster@1 43 <h1 class="title"><?php print $title ?></h1>
webmaster@1 44 <div class="tabs"><?php print $tabs ?></div>
webmaster@1 45 <?php if ($show_messages) { print $messages; } ?>
webmaster@1 46 <?php print $help ?>
webmaster@1 47 <?php print $content; ?>
webmaster@1 48 <?php print $feed_icons; ?>
webmaster@1 49 </div>
webmaster@1 50 </td>
webmaster@1 51 <?php if ($right) { ?><td id="sidebar-right">
webmaster@1 52 <?php print $right ?>
webmaster@1 53 </td><?php } ?>
webmaster@1 54 </tr>
webmaster@1 55 </table>
webmaster@1 56
webmaster@1 57 <div id="footer">
webmaster@1 58 <?php print $footer_message ?>
webmaster@1 59 <?php print $footer ?>
webmaster@1 60 </div>
webmaster@1 61 <?php print $closure ?>
webmaster@1 62 </body>
webmaster@1 63 </html>