| 1 |
<?php
|
| 2 |
// $Id: page.tpl.php,v 1.1 2006/10/24 22:52:12 rkendall Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
* No Koala! Drupal theme by Ross Kendall - http://rosskendall.com.
|
| 7 |
*
|
| 8 |
* The No Koala! theme is a simple but elegant single-column theme for
|
| 9 |
* the Drupal content management system. It's goal is to focus on
|
| 10 |
* accessibility and usability, and should be suitable for a blog or
|
| 11 |
* other simple websites.
|
| 12 |
*
|
| 13 |
* The theme uses XHTML and CSS, and incorporates a CSS dropdown menu
|
| 14 |
* that is designed to be integrated with the Drupal menu system.
|
| 15 |
*/
|
| 16 |
|
| 17 |
/*
|
| 18 |
Copyright (C) 2006 Ross Kendall - http://rosskendall.com
|
| 19 |
|
| 20 |
This program is free software; you can redistribute it and/or
|
| 21 |
modify it under the terms of the GNU General Public License
|
| 22 |
as published by the Free Software Foundation; either version 2
|
| 23 |
of the License, or (at your option) any later version.
|
| 24 |
|
| 25 |
This program is distributed in the hope that it will be useful,
|
| 26 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 27 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 28 |
GNU General Public License for more details.
|
| 29 |
|
| 30 |
You should have received a copy of the GNU General Public License
|
| 31 |
along with this program; if not, write to the Free Software
|
| 32 |
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
| 33 |
http://www.gnu.org/copyleft/gpl.html
|
| 34 |
*/
|
| 35 |
|
| 36 |
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 37 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language; ?>" xml:lang="<?php print $language; ?>">
|
| 38 |
|
| 39 |
<head>
|
| 40 |
<title><?php print $head_title; ?></title>
|
| 41 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 42 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
| 43 |
<?php print $head; ?>
|
| 44 |
<?php print $styles; ?>
|
| 45 |
<script type="text/javascript" src="<?php print $base_path.$directory; ?>/menu.js"></script>
|
| 46 |
</head>
|
| 47 |
|
| 48 |
<body >
|
| 49 |
<div id="skip"><a href="#start" name="top">Skip to content</a></div>
|
| 50 |
<div id="drop-shadow-top"></div>
|
| 51 |
<div id="drop-shadow-sides">
|
| 52 |
<div id="container">
|
| 53 |
|
| 54 |
<div id="header">
|
| 55 |
<?php if ($logo) { ?><a href="<?php print $base_path; ?>" title="<?php print $site_name.' '.t('Home Page');?>"><img id="logo" src="<?php print $logo; ?>" alt="<?php print $site_name.' '.t('Logo');?>" /></a><?php } ?>
|
| 56 |
|
| 57 |
<h1 id="site-name"><a href="<?php print $base_path; ?>" title="<?php print $site_name.' '.t('Home Page');?>"><?php print $site_name ?></a></h1>
|
| 58 |
|
| 59 |
<?php if ($site_slogan) { ?><div id="site-description"><?php print $site_slogan; ?></div><?php } ?>
|
| 60 |
<?php if ($search_box): ?><?php print $search_box ?><?php endif; ?>
|
| 61 |
|
| 62 |
</div><!--/#header-->
|
| 63 |
|
| 64 |
<div id="nav">
|
| 65 |
<?php print $top_menu; ?>
|
| 66 |
|
| 67 |
</div><!--/#nav-->
|
| 68 |
|
| 69 |
<?php if ($sidebar_left): ?>
|
| 70 |
<div id="leftcol">
|
| 71 |
<?php print $sidebar_left; ?>
|
| 72 |
</div><!--/#leftcol-->
|
| 73 |
<?php endif; ?>
|
| 74 |
|
| 75 |
<div id="maincol">
|
| 76 |
<a name="start"></a><!-- accessibility "Skip to content" anchor -->
|
| 77 |
|
| 78 |
<?php if ($mission) { ?><div id="mission"><?php print $mission; ?></div><?php } ?>
|
| 79 |
|
| 80 |
<?php if (!preg_match('#>Home</a></div>$#', $breadcrumb)) { print $breadcrumb; } ?>
|
| 81 |
|
| 82 |
<?php if ($title) { ?><h2 class="title"><?php print $title; ?></h2><?php } ?>
|
| 83 |
|
| 84 |
<?php if ($tabs) { ?><div class="tabs"><?php print $tabs; ?></div><?php } ?>
|
| 85 |
|
| 86 |
<?php print $help ?>
|
| 87 |
<?php print $messages ?>
|
| 88 |
|
| 89 |
<!-- start 'content' -->
|
| 90 |
<?php print $content; ?>
|
| 91 |
|
| 92 |
<!-- end 'content' -->
|
| 93 |
|
| 94 |
</div><!--/#maincol-->
|
| 95 |
|
| 96 |
<!--<br clear="all" />-->
|
| 97 |
|
| 98 |
<div id="footer">
|
| 99 |
<div id="footer-text">
|
| 100 |
<?php print $footer_message ?>
|
| 101 |
</div>
|
| 102 |
</div>
|
| 103 |
|
| 104 |
</div><!--/#container-->
|
| 105 |
</div><!--/#drop-shadow-sides-->
|
| 106 |
<div id="drop-shadow-bottom">
|
| 107 |
<!-- Thanks for any (optional) credit -->
|
| 108 |
<div id="credit"><a href="http://nokoala.rosskendall.com/">No Koala!</a> theme by <a href="http://rosskendall.com/">Ross Kendall</a></div>
|
| 109 |
</div>
|
| 110 |
<?php print $closure ?>
|
| 111 |
</body>
|
| 112 |
</html>
|
| 113 |
|