| 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->language ?>" xml:lang="<?php print $language->language ?>">
|
| 3 |
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<?php print $head ?>
|
| 7 |
<?php print $styles ?>
|
| 8 |
|
| 9 |
<!--[if lt IE 8]>
|
| 10 |
<link rel="stylesheet" type="text/css" media="all" href="<?php print $base_path . $directory .'/fix-ie.css'; ?>" />
|
| 11 |
<![endif]-->
|
| 12 |
<link rel="stylesheet" type="text/css" media="print" href="<?php print $base_path . $directory .'/print.css' ?>" />
|
| 13 |
|
| 14 |
<?php print $scripts ?>
|
| 15 |
</head>
|
| 16 |
|
| 17 |
<body class="<?php print $body_classes ?>">
|
| 18 |
<div id="body-wrapper">
|
| 19 |
<div id="header" class="clear-block">
|
| 20 |
<?php if ($logo): ?>
|
| 21 |
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img id="logo" src="<?php print $logo ?>" alt="Logo" /></a>
|
| 22 |
<?php endif; ?>
|
| 23 |
|
| 24 |
<?php if ($site_name): ?>
|
| 25 |
<h1 id="site-name"><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1>
|
| 26 |
<?php endif; ?>
|
| 27 |
<?php if ($site_slogan): ?>
|
| 28 |
<span id="site-slogan"><?php print $site_slogan ?></span>
|
| 29 |
<?php endif;?>
|
| 30 |
</div>
|
| 31 |
|
| 32 |
<?php if ($primary_links): ?>
|
| 33 |
<div id="top-nav" class="clear-block">
|
| 34 |
<?php print $search_box ?>
|
| 35 |
<?php print theme('links', $primary_links, array('id' => 'primary')) ?>
|
| 36 |
</div>
|
| 37 |
<?php endif; ?>
|
| 38 |
|
| 39 |
<?php if ($secondary_links): ?>
|
| 40 |
<div id="top-nav2" class="clear-block">
|
| 41 |
<?php print theme('links', $secondary_links, array('id' => 'secondary')) ?>
|
| 42 |
</div>
|
| 43 |
<?php endif; ?>
|
| 44 |
|
| 45 |
<div id="page-wrapper">
|
| 46 |
<?php if ($header): ?>
|
| 47 |
<div id="header-block" class="clear-block"><?php print $header ?></div>
|
| 48 |
<?php endif; ?>
|
| 49 |
|
| 50 |
<div id="content-<?php print $layout ?>">
|
| 51 |
|
| 52 |
<div id="main" class="column"><div id="main2">
|
| 53 |
|
| 54 |
<?php if ($content_top): ?>
|
| 55 |
<div id="content-top" class="clear-block"><?php print $content_top ?></div>
|
| 56 |
<?php endif; ?>
|
| 57 |
|
| 58 |
<?php if ($mission): ?>
|
| 59 |
<div id="mission"><?php print $mission ?></div>
|
| 60 |
<?php endif; ?>
|
| 61 |
|
| 62 |
<?php print $breadcrumb ?>
|
| 63 |
|
| 64 |
<?php if ($title): ?>
|
| 65 |
<h2 class="title<?php print $node ? ' nodetitle' : ''; print $tabs ? ' withtabs' : ''; ?>"><?php print $title ?></h2>
|
| 66 |
<?php endif; ?>
|
| 67 |
|
| 68 |
<?php if ($tabs): ?>
|
| 69 |
<div id="tabs-wrapper" class="clear-block"><?php print $tabs ?></div>
|
| 70 |
<?php endif; ?>
|
| 71 |
|
| 72 |
<?php print $help ?>
|
| 73 |
<?php if ($show_messages && $messages): ?>
|
| 74 |
<?php print $messages ?>
|
| 75 |
<?php endif; ?>
|
| 76 |
<div class="clear-block"><?php print $content ?></div>
|
| 77 |
<?php print $feed_icons ?>
|
| 78 |
|
| 79 |
<?php if ($content_bottom): ?>
|
| 80 |
<div id="content-bottom" class="clear-block"><?php print $content_bottom ?></div>
|
| 81 |
<?php endif; ?>
|
| 82 |
|
| 83 |
</div></div>
|
| 84 |
|
| 85 |
<?php if ($left): ?>
|
| 86 |
<div id="sidebar-left" class="column sidebar">
|
| 87 |
<?php print $left ?>
|
| 88 |
</div>
|
| 89 |
<?php endif; ?>
|
| 90 |
|
| 91 |
<?php if ($right): ?>
|
| 92 |
<div id="sidebar-right" class="column sidebar">
|
| 93 |
<?php print $right ?>
|
| 94 |
</div>
|
| 95 |
<?php endif; ?>
|
| 96 |
|
| 97 |
</div>
|
| 98 |
|
| 99 |
<!-- footer -->
|
| 100 |
<div id="footer">
|
| 101 |
<?php print $footer_message ?>
|
| 102 |
<!-- Please don't remove -->
|
| 103 |
<p>Theme design by <a href="http://drupal.org/user/235829" title="Masumi Hirose">Masumi Hirose</a></p>
|
| 104 |
<!-- /Please don't remove -->
|
| 105 |
</div></div></div>
|
| 106 |
<?php print $closure ?>
|
| 107 |
</body>
|
| 108 |
</html>
|