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

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

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


Revision 1.5 - (show annotations) (download) (as text)
Fri May 18 20:05:14 2007 UTC (2 years, 6 months ago) by psicomante
Branch: MAIN
CVS Tags: DRUPAL-5--1-3, HEAD
Changes since 1.4: +1 -2 lines
File MIME type: text/x-php
Changed footer.
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
4 <head>
5 <head>
6 <title><?php print $head_title ?></title>
7 <?php //to correct the unsightly Flash of Unstyled Content. http://www.bluerobot.com/web/css/fouc.asp ?>
8 <script type="text/javascript"></script>
9 <?php print $head ?>
10 <?php print $styles ?>
11 <?php print $scripts ?>
12 <!--[if lt IE 7]>
13 <style type="text/css" media="all">@import "<?php print base_path() . path_to_theme() ?>/ie.css";</style>
14 <![endif]-->
15 </head>
16 <body>
17 <div id="globalwrap">
18 <div id="header">
19 <?php if ($search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
20 <?php if ($site_name) { ?><h1 id='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
21 <?php if ($logo) { ?><div id="site-logo"><a href="<?php print $base_path ?>" title="<?php print $site_name ?>"><img src="<?php print($logo) ?>" alt="<?php print $site_name ?>" /></a></div><?php } ?>
22 <?php if ($site_slogan) { ?><div id='site-slogan'><?php print $site_slogan ?></div><?php } ?>
23 </div>
24 <div id="menu">
25 <div id="primary">
26 <?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
27 </div>
28 <div id="secondary">
29 <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
30 </div>
31 </div>
32 <div id="main">
33 <div id="customheader"><?php print($header) ?></div>
34 <br style="clear:both;" />
35 <?php if ($mission): ?><p id="mission"><?php print $mission ?></p><?php endif; ?>
36 <div id="wrapper">
37 <div id="content">
38 <?php if ($breadcrumb != ""): ?><div id="breadcrumb"><?php print $breadcrumb ?></div><?php endif; ?>
39 <h1 class="title"><?php print $title ?></h1>
40 <div class="tabs"><?php print $tabs ?></div>
41 <?php if ($help != ""): ?><p id="help"><?php print $help ?></p><?php endif; ?>
42 <?php if ($messages != ""): ?><div id="message"><?php print $messages ?></div><?php endif; ?>
43 <?php print($content) ?>
44 </div>
45 <?php if (($sidebar_right != "") || ($sidebar_left != "")): ?>
46 <div id="sidebar">
47 <?php print $sidebar_right ?>
48 <?php print $sidebar_left ?>
49 </div>
50 <?php endif; ?>
51 </div>
52 <br style="clear:both">
53 </div>
54 <div id="footer">
55 <?php if ($footer_message) : ?>
56 <?php print $footer_message;?>
57 <?php endif; ?>
58 <!--please leave these links. These are "The Orchard" template authors. Leaving these links you contribute their work-->
59 <p>Powered by <a href="http://www.drupal.org">Drupal</a> and The Orchard theme by <a title="OSWD design work" href="http://www.oswd.org/user/profile/id/12139">furado</a> and <a title="drupal port and redesign" href="http://blog.psicomante.net">Psicomante</a>.</p>
60 </div>
61 </div>
62
63 <?php print $closure;?>
64 </body>
65 </html>

  ViewVC Help
Powered by ViewVC 1.1.2