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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Thu Aug 28 17:40:45 2008 UTC (14 months, 4 weeks ago) by stclaird
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
Initial Release for Drupla 6.0
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 <head>
4 <title><?php print $head_title ?></title>
5 <?php print $head ?>
6 <?php print $styles ?>
7 <?php if ($right);else echo "<style type=\"text/css\" media=\"all\">#main {width:650px;} #main .inner {padding-right:0px;} #mission {margin-right:0;}</style>"; ?>
8 <?php if ($left);else echo "<style type=\"text/css\" media=\"all\">#main {width:650px;} #main .inner {padding-left:0px;} #mission {margin-left:0;}</style>"; ?>
9 <?php if ($right);elseif($left);else echo "<style type=\"text/css\" media=\"all\">#main {width:800px;} #main .inner {padding:0px;} #mission {margin:0;}</style>"; ?>
10 <!--[if IE]>
11 <style>#search {position:relative;top:-15px;}</style>
12 <![endif]-->
13 <?php print $scripts ?>
14 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
15 </head>
16
17 <body class="<?php print $body_classes; ?>">
18 <div id="wrapper">
19 <!-- <?php if (isset($secondary_links)) { ?><div id="menu"><?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'subnavlist')) ?></div><?php } ?> -->
20 <div id="header-region">
21 <?php print $header ?>
22 </div>
23 <div id="logo"><?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 } ?>
24 <?php if ($search_box) : ?><div class="search-box"><?php print $search_box ?></div><?php endif; ?></div>
25 <br clear="all"/>
26 <div id="header" class="clear-block">
27 <?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 } ?>
28 <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
29 </div>
30 <!-- <?php if (isset($primary_links)) { ?><div id="primary"><?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?></div><?php } ?> -->
31 <?php if ($left) { ?>
32 <div id="sidebar-left" class="column">
33 <?php print $left ?>
34 </div>
35 <?php } ?>
36 <div id="main" class="column">
37 <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
38 <div class="inner">
39 <?php print $breadcrumb ?>
40 <h1 class="title"><?php print $title ?></h1>
41 <?php if ($tabs){ ?><div class="tabs"><?php print $tabs ?></div><?php } ?>
42 <?php print $help ?>
43 <?php if ($show_messages): print $messages; endif; ?>
44 <?php print $content; ?>
45 <?php print $feed_icons; ?>
46 </div>
47 </div>
48 <?php if ($right): ?>
49 <div id="sidebar-right" class="column"><div id="sr2"><div id="sr3"><div id="sr4"><div id="sr5">
50 <?php print $right ?>
51 </div></div></div></div></div>
52 <?php endif; ?>
53 </div>
54 <br clear="all"/>
55 <div id="footer">
56 <?php echo $footer_message . $footer;?><br/>
57
58 </div>
59 <?php print $closure ?>
60 </div>
61 </body>
62 </html>

  ViewVC Help
Powered by ViewVC 1.1.2