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

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

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

revision 1.1, Mon Nov 20 15:07:03 2006 UTC revision 1.2, Mon Apr 2 15:51:54 2007 UTC
# Line 0  Line 1 
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            </head>
13    <body>
14    <div id="globalwrap">
15            <div id="header">
16            <?php if ($search_box): ?>
17                    <form action="<?php print url("search") ?>" method="post">
18                    <div id="search">
19                            <input class="form-text" type="text" size="15" value="" name="keys" />
20                            <input class="form-submit" type="submit" value="<?php print t("Search")?>" />
21                    </div>
22                    </form>
23            <?php endif; ?>
24            <?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 } ?>
25            <?php if ($site_slogan) { ?><div id='site-slogan'><?php print $site_slogan ?></div><?php } ?>
26            <?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 } ?>
27            </div>
28            <div id="main">
29                    <div id="menu">
30                            <div id="primary">
31                             <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
32                            </div>
33                            <div id="secondary">
34                              <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
35                            </div>
36                    </div>
37                    <div id="customheader"><?php print($header) ?></div>
38                    <?php if ($mission): ?><p id="mission"><?php print $mission ?></p><?php endif; ?>
39                    <div id="wrapper">
40                            <div id="content">
41                                    <?php if ($breadcrumb != ""): ?><div id="breadcrumb"><?php print $breadcrumb ?></div><?php endif; ?>
42                                    <h1 class="title"><?php print $title ?></h1>
43                                    <div class="tabs"><?php print $tabs ?></div>
44                                    <?php if ($help != ""): ?><p id="help"><?php print $help ?></p><?php endif; ?>
45                                    <?php if ($messages != ""): ?><div id="message"><?php print $messages ?></div><?php endif; ?>
46                                    <?php print($content) ?>
47                            </div>
48                            <?php if (($sidebar_right != "") || ($sidebar_left != "")): ?>
49                            <div id="sidebar">
50                                    <?php print $sidebar_right ?>
51                                    <?php print $sidebar_left ?>
52                            </div>
53                            <?php endif; ?>
54                    </div>
55                    <br style="clear:both">
56                    <div id="footer">
57                            <?php if ($footer_message) : ?>
58                            <?php print $footer_message;?>
59                            <?php endif; ?>
60                            <!--please leave these links. These are "The Orchard" template authors. Leaving these links you contribute their work-->
61                            <p><a title="OSWD design work" href="http://www.oswd.org/user/profile/id/12139">maria</a>
62                            | <a title="drupal port and redesign" href="http://psicomante.katapekkia.net">Psicomante</a></p>
63                    </div>
64            </div>
65    </div>
66    <?php print $closure;?>
67    </body>
68    </html>

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

  ViewVC Help
Powered by ViewVC 1.1.2