| 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 |
<head>
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<?php print $head ?>
|
| 6 |
<?php print $styles ?>
|
| 7 |
<?php print $scripts ?>
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
<div id="wrapper">
|
| 11 |
<div id="header">
|
| 12 |
<?php print $header ?> <!-- provides an area in the header to insert blocks -->
|
| 13 |
<h1><a href="<?php print $base_path ?>" title="<?php print $site_name ?>"><?php print $site_name ?></a></h1> <!-- link to the homepage that displays the site name -->
|
| 14 |
<?php if($site_slogan) ?><h2><?php print $site_slogan ?></h2> <?php endif ?> <!-- checks to see if a slogan was entered then displays it -->
|
| 15 |
</div> <!-- close header -->
|
| 16 |
<ul id="nav">
|
| 17 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'link')) ?><?php } ?> <!-- displays the main menu -->
|
| 18 |
</ul> <!-- end nav -->
|
| 19 |
<div id="content">
|
| 20 |
<?php print $breadcrumb ?> <!-- good for usabillity, shows where you are on the website -->
|
| 21 |
<?php print $tabs ?> <!-- shows Drupal's tabs within the theme -->
|
| 22 |
<?php print $messages ?> <!-- makes sure that all messages are shown making it harder for the admin to sweap any issues under the carpet! -->
|
| 23 |
<?php print $title ?> <!-- displays the title of the content being shown -->
|
| 24 |
<?php print $content ?> <!-- leave this alone -->
|
| 25 |
</div> <!-- end content -->
|
| 26 |
<!-- We are about to show our two sidebars; right and left. Delete the code block for one if you do not want to display it. -->
|
| 27 |
<div id="left"><?php print $left ?></div>
|
| 28 |
<div id="right"><?php print $right ?></div>
|
| 29 |
<!-- end sidebars -->
|
| 30 |
<div id="footer">
|
| 31 |
<?php print $footer ?>
|
| 32 |
<?php print $footer_message ?>
|
| 33 |
</div> <!-- end footer -->
|
| 34 |
</div> <!-- close wrapper -->
|
| 35 |
<?php print $closure ?> <!-- leave this to keep Drupal happy -->
|
| 36 |
</body>
|
| 37 |
</html>
|