| 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 ?>" lang="<?php print $language ?>">
|
| 3 |
<head>
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<?php print $head ?>
|
| 6 |
<?php print $styles ?>
|
| 7 |
<?php print $scripts ?>
|
| 8 |
<link rel="stylesheet" href="<?php print base_path() . path_to_theme() ?>/print.css" media="print" />
|
| 9 |
</head>
|
| 10 |
<body<?php print phptemplate_body_class($sidebar_left, $sidebar_right); ?>>
|
| 11 |
<p><a id="top"></a></p>
|
| 12 |
<div id="wrapper-header">
|
| 13 |
<div id="header">
|
| 14 |
<h1 id="site-name"><a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>">
|
| 15 |
<?php if ($logo): ?>
|
| 16 |
<img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo" />
|
| 17 |
<?php endif; ?>
|
| 18 |
<?php print $site_name; ?></a>
|
| 19 |
</h1>
|
| 20 |
<?php if (isset($site_slogan)) : ?>
|
| 21 |
<h2 id='site-slogan'>
|
| 22 |
<?php print $site_slogan; ?>
|
| 23 |
</h2>
|
| 24 |
<?php endif; ?> <!-- /logo-name-and-slogan -->
|
| 25 |
|
| 26 |
<?php print $search_box; ?>
|
| 27 |
|
| 28 |
<?php if (isset($primary_links)) : ?>
|
| 29 |
<?php print theme('linksnew', $primary_links, array('class' => 'links primary-links')) ?>
|
| 30 |
<?php endif; ?>
|
| 31 |
<?php if (isset($secondary_links)) : ?>
|
| 32 |
<?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
|
| 33 |
<?php endif; ?> <!-- /primary-and-secondary-links -->
|
| 34 |
</div><!-- /header -->
|
| 35 |
</div><!-- /wrapper-header -->
|
| 36 |
|
| 37 |
<div id="wrapper-main">
|
| 38 |
<div id="main">
|
| 39 |
<?php if ($header): ?>
|
| 40 |
<div id="topbar">
|
| 41 |
<?php print $header; ?>
|
| 42 |
</div>
|
| 43 |
<?php endif; ?>
|
| 44 |
|
| 45 |
<div id="content">
|
| 46 |
<div id="center">
|
| 47 |
<?php if ($breadcrumb): print $breadcrumb; endif; ?>
|
| 48 |
<?php if ($mission): print '<div id="mission">'. $mission .'</div>'; endif; ?>
|
| 49 |
|
| 50 |
<?php if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'; endif; ?>
|
| 51 |
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
|
| 52 |
<?php if ($tabs): print $tabs .'</div>'; endif; ?>
|
| 53 |
|
| 54 |
<?php if (isset($tabs2)): print $tabs2; endif; ?>
|
| 55 |
|
| 56 |
<?php if ($help): print $help; endif; ?>
|
| 57 |
<?php if ($messages): print $messages; endif; ?>
|
| 58 |
<?php print $content ?>
|
| 59 |
<span class="clear"></span>
|
| 60 |
<?php print $feed_icons ?>
|
| 61 |
<p><a href="#top" class="to-top"><?php print t('Back to top'); ?></a></p>
|
| 62 |
</div><!-- /center -->
|
| 63 |
<?php if ($sidebar_right): ?>
|
| 64 |
<div id="sidebar-right" class="sidebar">
|
| 65 |
<?php print $sidebar_right ?>
|
| 66 |
</div><!-- /sidebar-right -->
|
| 67 |
<?php endif; ?>
|
| 68 |
</div><!-- /content -->
|
| 69 |
|
| 70 |
<?php if ($sidebar_left): ?>
|
| 71 |
<div id="sidebar-left" class="sidebar">
|
| 72 |
<?php print $sidebar_left ?>
|
| 73 |
</div><!-- /sidebar-left -->
|
| 74 |
<?php endif; ?>
|
| 75 |
</div><!-- /main -->
|
| 76 |
|
| 77 |
<div id="footer">
|
| 78 |
<?php print $footer_message ?>
|
| 79 |
</div>
|
| 80 |
</div><!-- /wrapper-main -->
|
| 81 |
|
| 82 |
<?php print $closure ?>
|
| 83 |
</body>
|
| 84 |
</html>
|