| 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 |
|
| 6 |
<!--
|
| 7 |
Acta theme designed and built by Derek Webb of http://CollectiveColors.com
|
| 8 |
Please see me if you would like to have modifications made to your website.
|
| 9 |
|
| 10 |
Email me at: derek(at)collectivecolors(dot)com
|
| 11 |
|
| 12 |
Note: acta is latin for beach!
|
| 13 |
//-->
|
| 14 |
|
| 15 |
<title><?php print $head_title ?></title>
|
| 16 |
<?php print $head ?>
|
| 17 |
<?php print $styles ?>
|
| 18 |
<?php print $scripts ?>
|
| 19 |
|
| 20 |
|
| 21 |
<!--[if lt IE 7]>
|
| 22 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 23 |
<script defer type="text/javascript" src="/themes/acta/pngfix.js"></script>
|
| 24 |
<![endif]-->
|
| 25 |
|
| 26 |
|
| 27 |
</head>
|
| 28 |
|
| 29 |
<body>
|
| 30 |
<!-- [ Header area containing logo, site name and slogan, search box, and primary links ] -->
|
| 31 |
<div id='header' class='clear-block'>
|
| 32 |
<div id='header-logo'>
|
| 33 |
<?php if ($logo) { ?><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" class='logo-img' /></a><?php } ?>
|
| 34 |
</div>
|
| 35 |
|
| 36 |
<div id='site-info'>
|
| 37 |
<?php if ($site_name) { ?><span class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></span><?php } ?>
|
| 38 |
<?php if ($site_slogan) { ?> <span class='site-slogan'><?php print $site_slogan ?></span><?php } ?>
|
| 39 |
</div>
|
| 40 |
|
| 41 |
<?php if($search_box) { ?>
|
| 42 |
<div id='search-box'>
|
| 43 |
<?php print $search_box ?>
|
| 44 |
</div>
|
| 45 |
<?php } ?>
|
| 46 |
|
| 47 |
<?php if(!empty($primary_links)) { ?>
|
| 48 |
<div id='primary-links'>
|
| 49 |
<?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?>
|
| 50 |
</div>
|
| 51 |
<?php } ?>
|
| 52 |
</div>
|
| 53 |
<!-- [ End header area ] -->
|
| 54 |
|
| 55 |
<div id='main' class='clear-block'> <!-- [ holds blue bordered tile ] -->
|
| 56 |
<div id='main-top' class='clear-block'> <!-- [ holds top background with blue borders and sandy gradient ] -->
|
| 57 |
|
| 58 |
<!-- [ Check for secondary links ] -->
|
| 59 |
<?php if(!empty($secondary_links)) { ?>
|
| 60 |
<div id='secondary-links'>
|
| 61 |
<?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'subnavlist')) ?>
|
| 62 |
</div>
|
| 63 |
<?php } else { ?>
|
| 64 |
<div id='secondary-space'></div>
|
| 65 |
<?php } ?>
|
| 66 |
|
| 67 |
<!-- [ Content area ] -->
|
| 68 |
|
| 69 |
<!-- [ Check for sidebar - we handle the content section differently if there is none ] -->
|
| 70 |
<?php if (!empty($sidebar)) { ?>
|
| 71 |
<div id='content'>
|
| 72 |
<?php } else { ?>
|
| 73 |
<div id='content-nosb'>
|
| 74 |
<?php } ?>
|
| 75 |
|
| 76 |
<?php if ($mission) { ?><div id="mission"><?php print check_plain($mission) ?></div><?php } ?>
|
| 77 |
<?php if ($breadcrumb) { ?><div id='bc'><?php print $breadcrumb ?></div><?php } ?>
|
| 78 |
|
| 79 |
<h1 class="page-title"><?php print $title ?></h1>
|
| 80 |
<div class="tabs-div"><?php print $tabs ?></div>
|
| 81 |
|
| 82 |
<?php print $help ?>
|
| 83 |
<?php print $messages ?>
|
| 84 |
|
| 85 |
<!-- [ Content inner div allows padding without disrupting the containing floating div (content) ] -->
|
| 86 |
<div class='content-inner'>
|
| 87 |
|
| 88 |
<!-- [ Begin Content ] -->
|
| 89 |
<?php print $content; ?>
|
| 90 |
<!-- [ End Content ] -->
|
| 91 |
|
| 92 |
<?php if ($body) { ?>
|
| 93 |
<div id='body-blocks'>
|
| 94 |
<?php print $body ?>
|
| 95 |
</div>
|
| 96 |
<?php } ?>
|
| 97 |
|
| 98 |
</div>
|
| 99 |
|
| 100 |
<?php print $feed_icons; ?>
|
| 101 |
|
| 102 |
<!-- [ End #content or #content-nosb - from line 56 ] -->
|
| 103 |
</div>
|
| 104 |
|
| 105 |
<!-- [ Sidebar area ] -->
|
| 106 |
<?php if ($sidebar) { ?>
|
| 107 |
<div id='sidebar'>
|
| 108 |
<!-- [ Sidebar inner div allows padding without disrupting the containing floating div (content) ] -->
|
| 109 |
<div id='sidebar-inner'>
|
| 110 |
<?php print $sidebar ?>
|
| 111 |
</div>
|
| 112 |
</div>
|
| 113 |
<?php } ?>
|
| 114 |
|
| 115 |
<!-- [ End #main, #main-top, and #main-bottom ] -->
|
| 116 |
</div></div>
|
| 117 |
|
| 118 |
|
| 119 |
<!-- [ Footer area ] -->
|
| 120 |
<div id='footer' class='clear-block'>
|
| 121 |
<div id='footer-bottom' class='clear-block'>
|
| 122 |
<?php print $footer_message ?>
|
| 123 |
</div>
|
| 124 |
</div>
|
| 125 |
<?php print $closure ?>
|
| 126 |
</body>
|
| 127 |
</html>
|
| 128 |
|
| 129 |
|
| 130 |
|