| 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 |
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
| 7 |
<meta name="description" content="Your description goes here" />
|
| 8 |
<meta name="keywords" content="your,keywords,come,here" />
|
| 9 |
<?php print $head ?>
|
| 10 |
<?php print theme('stylesheet_import', base_path() . path_to_theme() . '/css/style_screen.css', 'screen');?>
|
| 11 |
<?php print theme('stylesheet_import', base_path() . path_to_theme() . '/css/style_print.css', 'print');?>
|
| 12 |
<?php print theme('stylesheet_import', base_path() . path_to_theme() . '/css/style_override.css', 'all');?>
|
| 13 |
<?php print $styles ?>
|
| 14 |
</head>
|
| 15 |
|
| 16 |
<body<?php print theme("onload_attribute");?>>
|
| 17 |
<div class="page-container-<?php echo $layoutcode ?>">
|
| 18 |
|
| 19 |
<!-- HEADER -->
|
| 20 |
<!-- Flag navigations -->
|
| 21 |
<div class="navflag-container">
|
| 22 |
<div class="navflag">
|
| 23 |
|
| 24 |
</div>
|
| 25 |
</div>
|
| 26 |
|
| 27 |
<!-- Navigation Level 1-->
|
| 28 |
<div class="nav1-container">
|
| 29 |
<div class="nav1">
|
| 30 |
<?php if (is_array($secondary_links)) : ?>
|
| 31 |
<ul>
|
| 32 |
<?php foreach ($secondary_links as $link): ?>
|
| 33 |
<li><?php print $link?></li>
|
| 34 |
<?php endforeach; ?>
|
| 35 |
</ul>
|
| 36 |
<?php endif; ?>
|
| 37 |
</div>
|
| 38 |
</div>
|
| 39 |
|
| 40 |
<!-- Sitename -->
|
| 41 |
<div class="site-name">
|
| 42 |
<?php if ($site_name) { ?><p class="title"><a href="<?php print $base_path ?>"><?php print $site_name ?></a></p><?php } ?>
|
| 43 |
</div>
|
| 44 |
<!-- Site slogan -->
|
| 45 |
<div class="site-slogan-container">
|
| 46 |
<div class="site-slogan">
|
| 47 |
<p class="text"><?php if ($site_slogan) { print($site_slogan); } // you could try class='title' or class='subtitle' for bigger text?>
|
| 48 |
</p>
|
| 49 |
|
| 50 |
|
| 51 |
</div>
|
| 52 |
</div>
|
| 53 |
<!-- Header banner -->
|
| 54 |
<div><img class="img-header" src="<?php print base_path() . path_to_theme() ?>/img/header.gif" alt=""/></div>
|
| 55 |
|
| 56 |
<!-- Navigation Level 2-->
|
| 57 |
<div class="nav2">
|
| 58 |
<?php if (is_array($primary_links)) : ?>
|
| 59 |
<ul>
|
| 60 |
<?php foreach ($primary_links as $link): ?>
|
| 61 |
<li> <?php print $link?> </li>
|
| 62 |
<?php endforeach; ?>
|
| 63 |
</ul>
|
| 64 |
<?php endif; ?>
|
| 65 |
</div>
|
| 66 |
|
| 67 |
<!-- Buffer after header -->
|
| 68 |
<div class="buffer"></div>
|
| 69 |
|
| 70 |
<!-- Left block-->
|
| 71 |
<?php if ($sidebar_left != ""): ?>
|
| 72 |
<div class="mainnav">
|
| 73 |
<?php print $sidebar_left ?>
|
| 74 |
</div>
|
| 75 |
<?php endif; ?>
|
| 76 |
|
| 77 |
<!-- CONTENT -->
|
| 78 |
<div class="content<?php echo $layoutcode ?>">
|
| 79 |
|
| 80 |
<?php if ($mission) { ?><div id="mission"><h3><?php print $mission ?></h3></div><?php } ?>
|
| 81 |
<!-- Page title -->
|
| 82 |
<?php print $breadcrumb ?>
|
| 83 |
<?php if ($title != ""): ?>
|
| 84 |
<div class="content<?php echo $layoutcode ?>-pagetitle"><?php print ($title) ?></div>
|
| 85 |
<?php endif; ?>
|
| 86 |
<?php if ($tabs) { ?>
|
| 87 |
<?php print ($tabs) ?>
|
| 88 |
<?php ; } ?>
|
| 89 |
<?php if ($help) { ?>
|
| 90 |
<div class="content<?php echo $layoutcode ?>-container line-box">
|
| 91 |
<div class="content<?php echo $layoutcode ?>-container-1col">
|
| 92 |
<div class="content-txtbox-shade bg-green02 txt-green10">
|
| 93 |
<?php print ($help) ?>
|
| 94 |
</div>
|
| 95 |
</div>
|
| 96 |
</div>
|
| 97 |
<?php } ?>
|
| 98 |
<?php if ($messages) { ?>
|
| 99 |
<div class="content<?php echo $layoutcode ?>-container line-box">
|
| 100 |
<div class="content<?php echo $layoutcode ?>-container-1col">
|
| 101 |
<div class="content-txtbox-shade bg-yellow04">
|
| 102 |
<?php print ($messages) ?>
|
| 103 |
</div>
|
| 104 |
</div>
|
| 105 |
</div>
|
| 106 |
<?php } ?>
|
| 107 |
|
| 108 |
<!-- Content -->
|
| 109 |
<div class="content<?php echo $layoutcode ?>-container">
|
| 110 |
<?php print($content) ?>
|
| 111 |
</div>
|
| 112 |
</div>
|
| 113 |
|
| 114 |
|
| 115 |
<!-- SIDEBAR -->
|
| 116 |
<?php if ($sidebar_right != ""): ?>
|
| 117 |
<div class="sidebar">
|
| 118 |
<?php print $sidebar_right ?>
|
| 119 |
</div>
|
| 120 |
<?php endif; ?>
|
| 121 |
|
| 122 |
|
| 123 |
|
| 124 |
<!-- FOOTER -->
|
| 125 |
<div class="footer">
|
| 126 |
<?php if ($footer_message != ""): ?>
|
| 127 |
<p><?php print $footer_message ?></p>
|
| 128 |
<?php endif; ?>
|
| 129 |
<p>Based on a design by G. Wolfgang | <a href="http://validator.w3.org/check?uri=referer" title="Validate code as W3C XHTML 1.1 Strict Compliant">W3C XHTML 1.0</a> | <a href="http://jigsaw.w3.org/css-validator/" title="Validate Style Sheet as W3C CSS 2.0 Compliant">W3C CSS 2.0</a></p>
|
| 130 |
</div>
|
| 131 |
</div>
|
| 132 |
<?php print $closure ?>
|
| 133 |
</body>
|
| 134 |
</html>
|