| 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" xml:lang="<?php print $language->language; ?>" lang="<?php print $language->language; ?>">
|
| 3 |
<head profile="http://gmpg.org/xfn/11">
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<?php print $head ?>
|
| 6 |
<?php print $styles ?>
|
| 7 |
<?php print $scripts ?>
|
| 8 |
</head>
|
| 9 |
<body class="<?php print $body_classes; ?>">
|
| 10 |
<div id="wrapper">
|
| 11 |
<div id="header">
|
| 12 |
<?php if ($search_box) { print '<div class="search">' . $search_box .'</div>'; } ?>
|
| 13 |
<?php if (isset($primary_links)) {
|
| 14 |
print theme('links', $primary_links, array('class' => 'navmenu primary-links'));
|
| 15 |
} ?>
|
| 16 |
<?php if (isset($secondary_links)) {
|
| 17 |
print theme('links', $secondary_links, array('class' => 'navmenu secondary-links'));
|
| 18 |
} ?>
|
| 19 |
<h1>
|
| 20 |
<a href="<?php print base_path() ?>" title="<?php print $site_slogan ? $site_slogan : $site_name ?>"><?php print $site_slogan ? $site_slogan : $site_name ?></a>
|
| 21 |
</h1>
|
| 22 |
</div>
|
| 23 |
<div id="content">
|
| 24 |
<div class="post-main">
|
| 25 |
<?php if ($breadcrumb) { print $breadcrumb; } ?>
|
| 26 |
<?php if ($mission) { print '<div id="mission">'. $mission .'</div>'; } ?>
|
| 27 |
<?php if ($tabs) { print '<div id="tabs-wrapper" class="clear-block">'; } ?>
|
| 28 |
<?php if ($title) { print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; } ?>
|
| 29 |
<?php if ($tabs) { print $tabs .'</div>'; } ?>
|
| 30 |
<?php if (isset($tabs2)) { print $tabs2; } ?>
|
| 31 |
<?php if ($help) { print $help; } ?>
|
| 32 |
<?php if ($show_messages && $messages) { print $messages; } ?>
|
| 33 |
</div>
|
| 34 |
<?php if ((strlen($content) > strlen('<div class="post-meta">')) && (substr($content, 0, strlen('<div class="post-meta">')) == '<div class="post-meta">')) {
|
| 35 |
print $content;
|
| 36 |
} else {
|
| 37 |
print '<div class="post-main">' . $content . '</div>';
|
| 38 |
} ?>
|
| 39 |
<div class="clear-block clear"></div>
|
| 40 |
</div>
|
| 41 |
<div id="sidebar">
|
| 42 |
<div id="sidebar1">
|
| 43 |
<div class="sb1">
|
| 44 |
<?php if ($left) { ?>
|
| 45 |
<div id="sidebar-left" class="sidebar">
|
| 46 |
<?php print $left ?>
|
| 47 |
</div>
|
| 48 |
<?php } ?>
|
| 49 |
</div>
|
| 50 |
</div>
|
| 51 |
<div id="sidebar2">
|
| 52 |
<div class="sb2">
|
| 53 |
<?php if ($right) { ?>
|
| 54 |
<div id="sidebar-right" class="sidebar">
|
| 55 |
<?php print $right ?>
|
| 56 |
</div>
|
| 57 |
<?php } ?>
|
| 58 |
</div>
|
| 59 |
</div>
|
| 60 |
</div>
|
| 61 |
<div id="bottom">
|
| 62 |
<div class="bottom">
|
| 63 |
<?php if ($footer_message) { print $footer_message; } ?>
|
| 64 |
<?php if ($footer) { print $footer; } ?>
|
| 65 |
<?php if ($closure) { print $closure; } ?>
|
| 66 |
</div>
|
| 67 |
</div>
|
| 68 |
<div id="footer">
|
| 69 |
<p>
|
| 70 |
© 2007
|
| 71 |
<a href="<?php print base_path() ?>" class="<?php print $site_name ?>" title="<?php print $site_name ?>"><?php print $site_name ?></a> |
|
| 72 |
<a href="http://www.ilemoned.com/wordpress/wptheme-dark" title="WordPress theme: Dark">the "dark" theme</a><br/>
|
| 73 |
<a href="http://validator.w3.org/check?uri=<?php print theme('hostname'); ?>" class="w3c" title="<?php print t('Valid XHTML 1.0 Strict'); ?>">XHTML</a>
|
| 74 |
<a href="http://jigsaw.w3.org/css-validator/validator?uri=<?php print theme('hostname') . path_to_theme(); ?>/style.css" class="w3c" title="<?php print t('Valid CSS 2.0'); ?>">CSS</a>
|
| 75 |
<a href="http://www.bartelme.at" class="credit" title="<?php print t('Designed by Wolfgang Bartelme'); ?>">Bartelme Design</a>
|
| 76 |
<a href="http://drupal.org" class="credit" title="<?php print t('Drupal'); ?>">Drupal</a>
|
| 77 |
</p>
|
| 78 |
</div>
|
| 79 |
</div>
|
| 80 |
</body>
|
| 81 |
</html>
|