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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Sun May 28 04:15:29 2006 UTC (3 years, 6 months ago) by handelaar
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-4-7
File MIME type: text/x-php
Adding theme to cvs
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 <!--[if lt IE 7]>
10 <script src="/ie7/ie7-standard-p.js" type="text/javascript"></script>
11 <![endif]-->
12 </head>
13
14 <body>
15
16 <div id="header">
17 <div id="logo">
18 <?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 } ?>
19 <?php if (($site_name) && !($logo)) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
20 <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
21 </div>
22 <div id="menu">
23 <?php if (isset($secondary_links)) { ?><div id="secondary"><?php print theme('links', $secondary_links) ?></div><?php } ?>
24 <?php print $search_box ?>
25 </div>
26 <div><?php print $header ?></div>
27 </div>
28 <?php if (isset($primary_links)) { ?><div id="primary"><?php print theme('links', $primary_links) ?></div><?php } ?>
29 <div id="wrapper_extra">
30 <div id="wrapper">
31
32 <!-- Block2: the main content area -->
33 <div id="block_1">
34 <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
35 <div id="main">
36 <?php print $breadcrumb ?>
37 <h1 class="title"><?php print $title ?></h1>
38 <div class="tabs"><?php print $tabs ?></div>
39 <?php print $help ?>
40 <?php print $messages ?>
41 <?php print $content; ?>
42 </div>
43 <div class="verticalalign"></div>
44 </div>
45
46 <!-- Block2: the left sidebar -->
47 <div id="block_2">
48 <?php if ($sidebar_left) { ?><div id="sidebar-left">
49 <?php print $sidebar_left ?>
50 </div><?php } ?>
51 <div class="verticalalign"></div>
52 </div>
53
54 <!-- Block3: the right sidebar -->
55 <div id="block_3">
56 <?php if ($sidebar_right) { ?><div id="sidebar-right">
57 <?php print $sidebar_right ?>
58 </div><?php } ?>
59 <div class="verticalalign"></div>
60 </div>
61
62
63 </div>
64 </div>
65
66 <div id="footer">
67 <?php print $footer_message ?>
68 "Fern" theme by <a href="http://handelaar.org" title="Designer">John Handelaar</a>, May 2006
69 </div>
70 <?php print $closure ?>
71 </body>
72 </html>

  ViewVC Help
Powered by ViewVC 1.1.2