| 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">
|
| 3 |
<head>
|
| 4 |
<?php print $head ?>
|
| 5 |
<?php print $styles ?>
|
| 6 |
<?php print $scripts ?>
|
| 7 |
<title><?php print $head_title ?></title>
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
<div id="content">
|
| 11 |
<div id="logo">
|
| 12 |
<h1><a href="<?php print $base_path ?>"><?php print $site_name ?></a></h1>
|
| 13 |
</div>
|
| 14 |
<ul id="menu">
|
| 15 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array()) ?><?php } ?>
|
| 16 |
</ul>
|
| 17 |
<div id="intro">
|
| 18 |
<h1><?php print $site_slogan ?></h1>
|
| 19 |
<p><?php print $subslogan ?></p>
|
| 20 |
<div id="login">
|
| 21 |
<?php if (isset($secondary_links)) { ?><p><?php print theme('links', $secondary_links) ?></p><?php } ?>
|
| 22 |
</div>
|
| 23 |
</div>
|
| 24 |
<?php if ($left) { ?>
|
| 25 |
<div id="left">
|
| 26 |
<?php print $left ?>
|
| 27 |
</div>
|
| 28 |
<?php } ?>
|
| 29 |
|
| 30 |
<div id="right">
|
| 31 |
<?php if ($mission) { ?><div class="mission"><?php print $mission ?></div><?php } ?>
|
| 32 |
<?php if ($breadcrumb) { ?><div class="breadcrumb"><?php print $breadcrumb ?></div><?php } ?>
|
| 33 |
<?php if ($title) { ?><h2 class="pageTitle"><?php print $title ?></h2><?php } ?>
|
| 34 |
<?php if ($tabs) { ?><div class="tabs"><?php print $tabs ?></div><?php } ?>
|
| 35 |
<?php if ($help) { ?><div class="help"><?php print $help ?></div><?php } ?>
|
| 36 |
<?php if ($messages) { ?><div class="messages"><?php print $messages ?></div><?php } ?>
|
| 37 |
<?php print $content_top; ?>
|
| 38 |
<?php print $content; ?>
|
| 39 |
<?php print $content_bottom; ?>
|
| 40 |
<?php print $feed_icons; ?>
|
| 41 |
<div style="clear: both"></div>
|
| 42 |
</div>
|
| 43 |
|
| 44 |
<div id="footer">
|
| 45 |
<div id="col1"><?php print $footer_message ?></div>
|
| 46 |
<div id="col3">
|
| 47 |
<p>Drupal Port: <a href="http://www.ronsnexus.com/">Ron Williams</a> of <a href="http://www.lithicmedia.com/">Lithic Media</a><br />
|
| 48 |
Design: <a href="http://www.solucija.com">Luka Cvrk</a></p>
|
| 49 |
</div>
|
| 50 |
|
| 51 |
</div>
|
| 52 |
</div>
|
| 53 |
<?php print $closure ?>
|
| 54 |
</body>
|
| 55 |
</html>
|