| 77 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 78 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>"> |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>"> |
| 79 |
<head> |
<head> |
| 80 |
<title><? print $head_title; ?></title> |
<title><?php print $head_title; ?></title> |
| 81 |
<? print $head; ?> |
<?php print $head; ?> |
| 82 |
<? print $styles; ?> |
<?php print $styles; ?> |
| 83 |
<? print $scripts; ?> |
<?php print $scripts; ?> |
| 84 |
<script type="text/javascript"><? /* Needed to avoid Flash of Unstyled Content in IE */ ?></script> |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?></script> |
| 85 |
</head> |
</head> |
| 86 |
<body class="<?php print $body_classes; ?>"> |
<body class="<?php print $body_classes; ?>"> |
| 87 |
|
|
| 88 |
<div id="page"> |
<div id="page"> |
| 89 |
<div id="header"> |
<div id="header"> |
| 90 |
<? if (!empty($primary_links)): ?> |
<?php if (!empty($primary_links)): ?> |
| 91 |
<div id="primarydiv" class="clear-block"> |
<div id="primarydiv" class="clear-block"> |
| 92 |
<? print theme('links', $primary_links, array('id' => 'primary')); ?> |
<?php print theme('links', $primary_links, array('id' => 'primary')); ?> |
| 93 |
</div><? endif; ?> |
</div><?php endif; ?> |
| 94 |
</div><!-- /header --> |
</div><!-- /header --> |
| 95 |
|
|
| 96 |
<div id="container" class="clear-block"> |
<div id="container" class="clear-block"> |
| 97 |
<div id="sidebar-left" class="column sidebar"> |
<div id="sidebar-left" class="column sidebar"> |
| 98 |
|
|
| 99 |
<? if (!empty($left)): ?> |
<?php if (!empty($left)): ?> |
| 100 |
<div id="sidebar-left-content"> |
<div id="sidebar-left-content"> |
| 101 |
<? print $left; ?> |
<?php print $left; ?> |
| 102 |
</div><? endif; ?> |
</div><?php endif; ?> |
| 103 |
|
|
| 104 |
|
|
| 105 |
</div><!-- /sidebar-left --> |
</div><!-- /sidebar-left --> |
| 106 |
|
|
| 107 |
<div id="name-and-slogan"> |
<div id="name-and-slogan"> |
| 108 |
<h1 id="sitename"> |
<h1 id="sitename"> |
| 109 |
<a href="<? print $front_page ?>" title="<? print t('Home'); ?>" rel="home"><? print $site_name; ?> |
<a href="<?php print $front_page ?>" title="<?php print t('Home'); ?>" rel="home"><?php print $site_name; ?> |
| 110 |
</a></h1> |
</a></h1> |
| 111 |
</div> |
</div> |
| 112 |
<div id="main" class="column"> |
<div id="main" class="column"> |
| 120 |
<?php endif; ?> |
<?php endif; ?> |
| 121 |
|
|
| 122 |
<?php if (!empty($tabs)): ?> |
<?php if (!empty($tabs)): ?> |
| 123 |
<div class="tabs"><? print $tabs; ?></div> |
<div class="tabs"><?php print $tabs; ?></div> |
| 124 |
<? endif; ?> |
<?php endif; ?> |
| 125 |
|
|
| 126 |
<? if (!empty($messages)): print $messages; endif; ?> |
<?php if (!empty($messages)): print $messages; endif; ?> |
| 127 |
|
|
| 128 |
<? if (!empty($help)): print $help; endif; ?> |
<?php if (!empty($help)): print $help; endif; ?> |
| 129 |
|
|
| 130 |
<div id="content-content" class="clear-block"> |
<div id="content-content" class="clear-block"> |
| 131 |
<?php print $content; ?> |
<?php print $content; ?> |
| 139 |
<div id="copyright"> |
<div id="copyright"> |
| 140 |
<div id="left"><p>© All rights reserved. Drupal Theme by <a href="http://webdesign.magnity.co.uk">Magnity Webdesign</a>.</p></div> |
<div id="left"><p>© All rights reserved. Drupal Theme by <a href="http://webdesign.magnity.co.uk">Magnity Webdesign</a>.</p></div> |
| 141 |
|
|
| 142 |
<? if (!empty($secondary_links)): ?> |
<?php if (!empty($secondary_links)): ?> |
| 143 |
<div id="secondarydiv" class="clear-block"> |
<div id="secondarydiv" class="clear-block"> |
| 144 |
<? print theme('links', $secondary_links, array('id' => 'secondary')); ?> |
<?php print theme('links', $secondary_links, array('id' => 'secondary')); ?> |
| 145 |
</div><? endif; ?> |
</div><?php endif; ?> |
| 146 |
</div> |
</div> |
| 147 |
|
|
| 148 |
</div><!-- /page --> |
</div><!-- /page --> |
| 149 |
<? print($closure) ?> |
<?php print($closure) ?> |
| 150 |
</body> |
</body> |
| 151 |
</html> |
</html> |