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