| 1 |
<?php // $Id: $
|
| 2 |
//
|
| 3 |
// Ubiquity Drupal theme page.tpl.php file
|
| 4 |
//
|
| 5 |
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 6 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
|
| 7 |
<head>
|
| 8 |
|
| 9 |
<title><?php print $head_title; ?></title>
|
| 10 |
<?php print $head; ?>
|
| 11 |
<?php print $styles; ?>
|
| 12 |
<!--[if IE]>
|
| 13 |
<style type="text/css" media="screen">@import "/<?php print $directory ?>/fix-ie.css";</style>
|
| 14 |
<![endif]-->
|
| 15 |
<?php print $scripts; ?>
|
| 16 |
|
| 17 |
</head>
|
| 18 |
|
| 19 |
<body class="<?php print $body_classes; ?>">
|
| 20 |
|
| 21 |
<div id="container">
|
| 22 |
|
| 23 |
<div id="header">
|
| 24 |
|
| 25 |
<div id="header-inner">
|
| 26 |
|
| 27 |
<?php if ($logo): ?>
|
| 28 |
<a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>">
|
| 29 |
<img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo" />
|
| 30 |
</a>
|
| 31 |
<?php endif; ?>
|
| 32 |
|
| 33 |
<?php if ($site_name || $site_slogan): ?><div id="name-and-slogan"><?php endif; ?>
|
| 34 |
<?php if ($site_name): ?>
|
| 35 |
<h1 id="site-name">
|
| 36 |
<a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>">
|
| 37 |
<?php print $site_name; ?>
|
| 38 |
</a>
|
| 39 |
</h1>
|
| 40 |
<?php endif; ?>
|
| 41 |
|
| 42 |
<?php if ($site_slogan): ?>
|
| 43 |
<div id="site-slogan"><?php print $site_slogan; ?></div>
|
| 44 |
<?php endif; ?>
|
| 45 |
<?php if ($site_name || $site_slogan): ?></div><?php endif; ?>
|
| 46 |
|
| 47 |
</div>
|
| 48 |
|
| 49 |
<?php if ($primary_links): ?>
|
| 50 |
<div id="navigation" class="menu <?php if ($primary_links) { print "withprimary"; } if ($secondary_links) { print " withsecondary"; } ?> ">
|
| 51 |
<?php if ($primary_links): ?>
|
| 52 |
<div id="primary" class="clear-block">
|
| 53 |
<?php print theme('menu_links', $primary_links); ?>
|
| 54 |
</div>
|
| 55 |
<?php endif; ?>
|
| 56 |
|
| 57 |
</div> <!-- /navigation -->
|
| 58 |
<?php endif; ?>
|
| 59 |
|
| 60 |
<?php print $search_box; ?>
|
| 61 |
|
| 62 |
</div>
|
| 63 |
|
| 64 |
<div id="wrapper">
|
| 65 |
|
| 66 |
<div id="wrapper-main">
|
| 67 |
|
| 68 |
<div id="main">
|
| 69 |
<div id="main-inner">
|
| 70 |
<?php if ($breadcrumb): print $breadcrumb; endif; ?>
|
| 71 |
|
| 72 |
<?php if ($mission): ?><div id="mission"><?php print $mission; ?></div><?php endif; ?>
|
| 73 |
<?php if ($content_top):?><div id="content-top"><?php print $content_top; ?></div><?php endif; ?>
|
| 74 |
<?php if ($title): ?><h1 class="title"><?php print $title; ?></h1><?php endif; ?>
|
| 75 |
<?php if ($tabs): ?><div class="tabs-pri"><?php print $tabs; ?></div><br class="clear" /><?php endif; ?>
|
| 76 |
<?php if (isset($tabs2)): ?><div class="tabs-sec"><?php print $tabs2; ?></div><br class="clear" /><?php endif; ?>
|
| 77 |
<?php print $help; ?>
|
| 78 |
<?php print $messages; ?>
|
| 79 |
<?php print $content; ?>
|
| 80 |
<?php print $feed_icons; ?>
|
| 81 |
<?php if ($content_bottom): ?><div id="content-bottom"><?php print $content_bottom; ?></div><?php endif; ?>
|
| 82 |
|
| 83 |
</div>
|
| 84 |
</div>
|
| 85 |
|
| 86 |
</div> <!-- /wrapper -->
|
| 87 |
|
| 88 |
<?php if ($sidebar_left): ?>
|
| 89 |
<div id="sidebar-left" class="column sidebar">
|
| 90 |
<div id="sidebar-left-inner">
|
| 91 |
<?php print $sidebar_left; ?>
|
| 92 |
</div>
|
| 93 |
</div>
|
| 94 |
<?php endif; ?>
|
| 95 |
|
| 96 |
<?php if ($sidebar_right): ?>
|
| 97 |
<div id="sidebar-right" class="column sidebar">
|
| 98 |
<div id="sidebar-right-inner">
|
| 99 |
<?php print $sidebar_right; ?>
|
| 100 |
</div>
|
| 101 |
</div>
|
| 102 |
<?php endif; ?>
|
| 103 |
|
| 104 |
</div>
|
| 105 |
|
| 106 |
<div id="footer">
|
| 107 |
<div id="footer-inner">
|
| 108 |
<?php print $footer_message; ?>
|
| 109 |
</div>
|
| 110 |
</div>
|
| 111 |
|
| 112 |
</div>
|
| 113 |
|
| 114 |
<?php print $closure; ?>
|
| 115 |
|
| 116 |
</body>
|
| 117 |
</html>
|