/[drupal]/contributions/themes/bluelake/page.tpl.php
ViewVC logotype

Contents of /contributions/themes/bluelake/page.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Fri Jan 18 08:46:47 2008 UTC (22 months, 1 week ago) by owahab
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, HEAD
Branch point for: DRUPAL-6--1
Changes since 1.1: +5 -5 lines
File MIME type: text/x-php
Porting to Drupal 6
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>">
3
4 <head>
5 <title><?php print $head_title ?></title>
6 <?php print $head ?>
7 <?php print $styles ?>
8 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
9 </head>
10
11 <body>
12 <div id="body">
13 <table border="0" cellpadding="0" cellspacing="0" id="header">
14 <tr>
15 <td id="logo">
16 <?php if ($logo) { ?><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
17 <?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
18 <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
19 </td>
20 <td id="menu">
21 <?php if (isset($secondary_links)) { ?><div id="secondary"><?php print theme('links', $secondary_links) ?></div><?php } ?>
22 <?php if (isset($primary_links)) { ?><div id="primary"><?php print theme('links', $primary_links) ?></div><?php } ?>
23 <?php print $search_box ?>
24 </td>
25 </tr>
26 <tr>
27 <td colspan="2"><div><?php print $header ?></div></td>
28 </tr>
29 </table>
30
31 <table border="0" cellpadding="0" cellspacing="0" id="content">
32 <tr>
33 <?php if ($left) { ?><td id="sidebar-left">
34 <?php print $left ?>
35 </td><?php } ?>
36 <td valign="top">
37 <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
38 <div id="main">
39 <?php print $breadcrumb ?>
40 <?=$title? '<h1 class="title">'.$title.'</h1>' : ''?>
41 <?=$tabs? '<div class="tabs">'.$tabs.'</div>' : ''?>
42 <?php print $help ?>
43 <?php print $messages ?>
44 <?php print $content; ?>
45 </div>
46 </td>
47 <?php if ($right) { ?><td id="sidebar-right">
48 <?php print $right ?>
49 </td><?php } ?>
50 </tr>
51 </table>
52
53 <div id="footer">
54 <?php print $footer_message ?>
55 <br /><a href="http://drupal.org/project/bluelake">BlueLake Theme</a> by <a href="http://owahab.com/">Omar Abdel-Wahab</a>
56 </div>
57 <?php print $closure ?>
58 </div>
59 </body>
60 </html>

  ViewVC Help
Powered by ViewVC 1.1.2