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

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

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


Revision 1.4 - (show annotations) (download) (as text)
Mon Jun 19 23:29:48 2006 UTC (3 years, 5 months ago) by samat
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +3 -8 lines
File MIME type: text/x-php
fix display of search box
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 ?>" xml:lang="<?php print $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<?php print $onload_attributes ?>>
12 <div id="pageWrapper">
13
14 <table border="0" cellpadding="0" cellspacing="0" id="header">
15 <tr>
16 <td>
17 <table>
18 <tr>
19 <?php if ($logo) { ?><td id="logo"><a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home'); ?>" /></a></td><?php } ?>
20 <td id="site-name-slogan">
21 <?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 } ?>
22 <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
23 </td>
24 </tr>
25 </table>
26 </td>
27 <td id="menu">
28 <?php if ($secondary_links) { ?><div id="secondary"><?php print theme('links',$secondary_links) ?></div><?php } ?>
29 <?php if ($primary_links) { ?><div id="primary"><?php print theme('links',$primary_links) ?></div><?php } ?>
30 <?php if ($search_box) { print $search_box; } ?>
31 </td>
32 </tr>
33 </table>
34
35 <table id="columnContainer">
36 <tr>
37 <?php if ($sidebar_left) { ?>
38 <td id="leftColumn">
39 <div class="sidebar" id="sidebar-left"><?php print $sidebar_left ?></div>
40 <div class="clear"></div>
41 </td>
42 <?php } ?>
43 <td id="middleColumn">
44 <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
45 <div id="main">
46 <?php if ($breadcrumb) print "<div class=\"breadcrumb\">$breadcrumb &raquo; $title</div>"; ?>
47 <?php if ($title) { ?><h1 class="title"><?php print $title ?></h1><?php } ?>
48 <?php if ($tabs) { ?><div class="tabs"><?php print $tabs ?></div><?php } ?>
49 <?php print $help ?>
50 <?php print $messages ?>
51
52 <?php print $content; ?>
53 </div>
54 <div class="clear"></div>
55 </td>
56 <?php if ($sidebar_right) { ?>
57 <td id="rightColumn">
58 <div class="sidebar" id="sidebar-right"><?php print $sidebar_right ?></div>
59 <div class="clear"></div>
60 </td>
61 <?php } ?>
62 </tr>
63 </table>
64
65 <div id="footer">
66 <?php print $footer_message ?>
67 <p>Some portions of this website's design are part of the <a href="http://samat.org/drupal-themes/sands">Sands theme</a> for <a href="http://drupal.org">Drupal</a>, which is <a href="http://www.gnu.org/copyleft/">copyleft</a> (c) 2005-2006 <a href="http://samat.org/">Samat Jain</a>. All rights reserved.</p>
68 </div>
69 <?php print $closure ?>
70 </div>
71 </body>
72 </html>

  ViewVC Help
Powered by ViewVC 1.1.2