| 1 |
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile11.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
| 3 |
<head>
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<style type="text/css">
|
| 6 |
hr { clear: both; border:solid; border-width:1px; border-bottom-color:#007300; border-top-color:#ffffff; border-left-color:#ffffff; border-right-color:#ffffff;}
|
| 7 |
.accesskey { text-decoration: underline; }
|
| 8 |
img { border: 0; }
|
| 9 |
a { text-decoration: none; }
|
| 10 |
.header { font-size: small; background-color: <?php print theme_get_setting('mobi_header_background_color') ?>; color: blue; border-bottom: solid 1px blue; margin: 0 0 5px 0; padding: 2px; }
|
| 11 |
.content { background-color: <?php print theme_get_setting('mobi_content_background_color') ?>; }
|
| 12 |
.footer { font-size: small; background-color: <?php print theme_get_setting('mobi_footer_background_color') ?>; color: blue; border-top: solid 1px blue; margin: 10px 0 0 0; }
|
| 13 |
<?php if ($sidebar_left) { ?>
|
| 14 |
.sidebar-left { background-color: <?php print theme_get_setting('mobi_left_background_color') ?>; }
|
| 15 |
<?php } ?>
|
| 16 |
<?php if ($sidebar_right) { ?>
|
| 17 |
.sidebar-right { background-color: <?php print theme_get_setting('mobi_right_background_color') ?>; }
|
| 18 |
<?php } ?>
|
| 19 |
</style>
|
| 20 |
</head>
|
| 21 |
<body>
|
| 22 |
<div class="header">
|
| 23 |
<?php if ($logo) { ?><img src="<?php print $logo ?>" alt="logo" /><br /><?php } ?>
|
| 24 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links) ?><?php } ?>
|
| 25 |
</div>
|
| 26 |
<?php if ($sidebar_left) { ?><div class="sidebar-left"><?php print $sidebar_left ?></div><hr /><?php } ?>
|
| 27 |
<div class="content">
|
| 28 |
<?php if ($breadcrumb) { print $breadcrumb; } ?>
|
| 29 |
<?php if ($mission) { print $mission; } ?>
|
| 30 |
<?php if ($title) { print '<h2>'. $title .'</h2>'; } ?>
|
| 31 |
<?php if ($tabs) { print $tabs; } ?>
|
| 32 |
<?php if (isset($tabs2)) { print $tabs2; } ?>
|
| 33 |
<?php if ($help) { print $help; } ?>
|
| 34 |
<?php if ($messages) { print $messages; } ?>
|
| 35 |
<?php print $content ?>
|
| 36 |
<?php print $feed_icons ?>
|
| 37 |
</div>
|
| 38 |
<?php if ($sidebar_right) { ?><hr /><div class="sidebar-right"><?php print $sidebar_right ?></div><?php } ?>
|
| 39 |
<div class="footer">
|
| 40 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links) ?><?php } ?>
|
| 41 |
<?php print $footer_message ?>
|
| 42 |
</div>
|
| 43 |
<?php print $closure; ?>
|
| 44 |
</body>
|
| 45 |
</html>
|