| 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 |
|
| 4 |
<head>
|
| 5 |
|
| 6 |
<title><?php print $head_title ?></title>
|
| 7 |
<?php print $head ?>
|
| 8 |
<?php print $styles ?>
|
| 9 |
<?php print $scripts ?>
|
| 10 |
<!--[if IE 6]>
|
| 11 |
<style type="text/css" media="all">@import "<?php print base_path() . path_to_theme() ?>/ie-fixes/ie6.css";</style>
|
| 12 |
<![endif]-->
|
| 13 |
<!--[if lt IE 7.]>
|
| 14 |
<script defer type="text/javascript" src="<?php print base_path() . path_to_theme() ?>/ie-fixes/pngfix.js"></script>
|
| 15 |
<![endif]-->
|
| 16 |
|
| 17 |
</head>
|
| 18 |
|
| 19 |
<body>
|
| 20 |
<div id="menu">
|
| 21 |
<!-- primary links -->
|
| 22 |
<div id="primary">
|
| 23 |
<?php if (isset($primary_links)) : ?>
|
| 24 |
<?php print theme('links', $primary_links) ?>
|
| 25 |
<?php endif; ?>
|
| 26 |
</div><!-- end primary links --></div>
|
| 27 |
|
| 28 |
<!-- begin header -->
|
| 29 |
|
| 30 |
<div id="header">
|
| 31 |
|
| 32 |
<!-- site logo -->
|
| 33 |
<?php if ($logo) : ?>
|
| 34 |
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
|
| 35 |
<img class="logo" src="<?php print $logo ?>" alt="<?php print t('Home') ?>" />
|
| 36 |
</a>
|
| 37 |
<?php endif; ?><!-- end site logo -->
|
| 38 |
|
| 39 |
<!-- site name -->
|
| 40 |
<?php if ($site_name) : ?>
|
| 41 |
<h1>
|
| 42 |
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
|
| 43 |
<?php print $site_name; ?>
|
| 44 |
</a>
|
| 45 |
</h1>
|
| 46 |
<?php endif; ?><!-- end site name -->
|
| 47 |
|
| 48 |
<!-- site slogan -->
|
| 49 |
<?php if ($site_slogan) : ?>
|
| 50 |
<h2>
|
| 51 |
<?php print $site_slogan; ?>
|
| 52 |
</h2>
|
| 53 |
<?php endif; ?><!-- end site slogan -->
|
| 54 |
|
| 55 |
</div><!-- end header -->
|
| 56 |
|
| 57 |
|
| 58 |
<!-- begin container -->
|
| 59 |
<div id="container">
|
| 60 |
|
| 61 |
|
| 62 |
|
| 63 |
<!-- content -->
|
| 64 |
|
| 65 |
<!-- begin mainContent -->
|
| 66 |
<div id="mainContent" style="width: <?php print amadou_get_mainContent_width( $sidebar_right) ?>px;">
|
| 67 |
|
| 68 |
<?php if ($mission): print '<div class="mission">'. $mission .'</div>'; endif; ?>
|
| 69 |
<?php if ($title) : print '<h1 class="nodetitle">' . $title . '</h1>'; endif; ?>
|
| 70 |
<?php if ($tabs) : print '<div class="tabs">' . $tabs . '</div>'; endif; ?>
|
| 71 |
<?php if ($help) : print '<div class="help">' . $help . '</div>'; endif; ?>
|
| 72 |
<?php if ($messages) : print '<div class="messages">' .$messages . '</div>'; endif; ?>
|
| 73 |
<?php print $content_top; ?>
|
| 74 |
<?php print $content; ?>
|
| 75 |
<?php print $content_bottom; ?>
|
| 76 |
<?php print $feed_icons; ?>
|
| 77 |
|
| 78 |
</div><!-- end mainContent -->
|
| 79 |
|
| 80 |
<!-- begin sideBars -->
|
| 81 |
|
| 82 |
<div id="sideBars-bg" style="width: <?php print amadou_get_sideBars_width( $sidebar_right) ?>px;">
|
| 83 |
<div id="sideBars" style="width: <?php print amadou_get_sideBars_width( $sidebar_right) ?>px;">
|
| 84 |
|
| 85 |
|
| 86 |
|
| 87 |
<!-- right sidebar -->
|
| 88 |
<?php if ($sidebar_right) : ?>
|
| 89 |
<div id="rightSidebar">
|
| 90 |
<?php print $sidebar_right; ?>
|
| 91 |
</div>
|
| 92 |
<?php endif; ?>
|
| 93 |
|
| 94 |
</div><!-- end sideBars -->
|
| 95 |
</div><!-- end sideBars-bg -->
|
| 96 |
|
| 97 |
|
| 98 |
|
| 99 |
<!-- footer -->
|
| 100 |
<div id="footer">
|
| 101 |
<?php print $footer_message; ?>
|
| 102 |
<?php print $footer; ?>
|
| 103 |
</div><!-- end footer -->
|
| 104 |
|
| 105 |
</div><!-- end container -->
|
| 106 |
|
| 107 |
<?php print $closure ?>
|
| 108 |
</body>
|
| 109 |
</html>
|