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

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

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


Revision 1.3 - (show annotations) (download) (as text)
Mon Jun 19 23:29:23 2006 UTC (3 years, 5 months ago) by samat
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +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 <div id="outerColumnContainer-<?php echo $layout; ?>">
36 <div id="innerColumnContainer">
37 <div id="SOWrap">
38
39 <div id="middleColumn">
40 <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
41 <div id="main">
42 <?php if ($breadcrumb) print "<div class=\"breadcrumb\">$breadcrumb &raquo; $title</div>"; ?>
43 <?php if ($title) { ?><h1 class="title"><?php print $title ?></h1><?php } ?>
44 <?php if ($tabs) { ?><div class="tabs"><?php print $tabs ?></div><?php } ?>
45 <?php print $help ?>
46 <?php print $messages ?>
47
48 <?php print $content; ?>
49 </div><!--main-->
50 </div><!--middleColumn-->
51
52 <?php if ($sidebar_left) { ?>
53 <div id="leftColumn">
54 <div class="sidebar" id="sidebar-left"><?php print $sidebar_left ?></div>
55 </div>
56 <?php } ?>
57 <div class="clear"></div>
58 </div><!--SOWrap-->
59
60 <?php if ($sidebar_right) { ?>
61 <div id="rightColumn">
62 <div class="sidebar" id="sidebar-right"><?php print $sidebar_right ?></div>
63 </div>
64 <?php } ?>
65 <div class="clear"></div>
66
67 </div><!--innerColumnContainer-->
68 </div><!--outerColumnContainer-->
69
70 <div id="footer">
71 <?php print $footer_message ?>
72 <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>
73 </div>
74 <?php print $closure ?>
75 </div>
76 </body>
77 </html>

  ViewVC Help
Powered by ViewVC 1.1.2