| 3 |
<head> |
<head> |
| 4 |
<title><?php print $head_title ?></title> |
<title><?php print $head_title ?></title> |
| 5 |
<style type="text/css"> |
<style type="text/css"> |
|
.header { background: #eef7fc; color: blue; border-bottom: solid 1px blue; margin: 0 0 5px 0; padding: 2px; } |
|
|
.footer { background: #eef7fc; color: blue; border-top: solid 1px blue; margin: 10px 0 0 0; } |
|
| 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;} |
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; } |
.accesskey { text-decoration: underline; } |
| 8 |
img { border: 0; } |
img { border: 0; } |
| 9 |
a { text-decoration: none; } |
a { text-decoration: none; } |
| 10 |
|
.header { background-color: <?php print theme('mobi_loader_background_color', 'header', '#eef7fc') ?>; color: blue; border-bottom: solid 1px blue; margin: 0 0 5px 0; padding: 2px; } |
| 11 |
|
.content { background-color: <?php print theme('mobi_loader_background_color', 'content', '#ffffff') ?>; } |
| 12 |
|
.footer { background-color: <?php print theme('mobi_loader_background_color', 'footer', '#eef7fc') ?>; 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('mobi_loader_background_color', 'left', '#ffffff') ?>; } |
| 15 |
|
<?php } ?> |
| 16 |
|
<?php if ($sidebar_right) { ?> |
| 17 |
|
.sidebar-right { background-color: <?php print theme('mobi_loader_background_color', 'right', '#ffffff') ?>; } |
| 18 |
|
<?php } ?> |
| 19 |
</style> |
</style> |
| 20 |
</head> |
</head> |
| 21 |
<body> |
<body> |
| 22 |
<div class="header"> |
<div class="header"> |
| 23 |
<?php if ($logo) { ?><img src="<?php print $logo ?>" alt="logo" /><br /><?php } ?> |
<?php if ($logo) { ?><img src="<?php print $logo ?>" alt="logo" /><br /><?php } ?> |
| 24 |
<?php if (isset($primary_links)) { ?><?php print mobi_loader_primary_links($primary_links) ?><?php } ?> |
<?php if (isset($primary_links)) { ?><?php print theme('mobi_loader_primary_links', $primary_links) ?><?php } ?> |
| 25 |
</div> |
</div> |
| 26 |
<?php if ($sidebar_left) { ?><div class="sidebar-left"><?php print $sidebar_left ?></div><hr /><?php } ?> |
<?php if ($sidebar_left) { ?><div class="sidebar-left"><?php print $sidebar_left ?></div><hr /><?php } ?> |
| 27 |
<div class="content"> |
<div class="content"> |