| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
|
| 3 |
<head>
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<?php print $head ?>
|
| 6 |
<?php print $styles ?>
|
| 7 |
<?php print $scripts ?>
|
| 8 |
</head>
|
| 9 |
|
| 10 |
<body>
|
| 11 |
<div id="header_bar">
|
| 12 |
<?php if ($site_name) : ?>
|
| 13 |
<div id="header_logo">
|
| 14 |
<a href="<?php print $base_path ?>"><?php if ($logo != ""): ?><img src="<?php print check_url($logo) ?>" alt="<?php print $site_name ?> logo" id="logo" /><?php endif; ?><img src="<?php print $base_path ?>themes/fblike/images/picto-title.php?text=<?php print urlencode($site_name) ?>&mode=logo" alt="<?php print($site_name) ?>" id="title" /></a><h1><?php print($site_name) ?></h1><?php if ($site_slogan != ""): ?><img src="<?php print $base_path ?>themes/fblike/images/picto-title.php?text=<?php print urlencode($site_slogan) ?>&mode=slogan" alt="<?php print($site_slogan) ?>" id="slogan" /><h2><?php print($site_slogan) ?></h2><?php endif; ?>
|
| 15 |
</div>
|
| 16 |
<?php endif; ?>
|
| 17 |
<div id="navigator" class="clearfix">
|
| 18 |
<div class="center_box">
|
| 19 |
<?php if (is_array($primary_links)) : ?>
|
| 20 |
<ul>
|
| 21 |
<?php $primary_link_first = true; foreach ($primary_links as $link_id => $link) : ?>
|
| 22 |
<li<?php $primary_link_class = ""; if (stristr($link_id, 'active')) $primary_link_class .= "active"; if ($primary_link_first) $primary_link_class .= " first"; $primary_link_class = trim($primary_link_class); if ($primary_link_class) print ' class="'.$primary_link_class.'"'; $primary_link_first = false; ?>><?php print l($link['title'], $link['href'], $link['attributes'], $link['query'], $link['fragment']) ?></li>
|
| 23 |
<?php endforeach; ?>
|
| 24 |
</ul>
|
| 25 |
<?php endif; ?>
|
| 26 |
</div>
|
| 27 |
</div>
|
| 28 |
</div>
|
| 29 |
<div class="middle-container clearfix">
|
| 30 |
<div class="content_header">
|
| 31 |
<div class="header_image"><img src="<?php print $base_path ?>themes/fblike/images/picto-title.php?text=<?php if ($title!="") print urlencode($title); else print $site_name; ?>&mode=title" alt="<?php if ($title!="") print $title; else print $site_name; ?>" /><h1><?php print $title ?></h1></div><?php if ($search_box != ""): ?><div class="search_box"><?php print $search_box ?></div><?php endif; ?>
|
| 32 |
</div>
|
| 33 |
<?php if ($tabs != ""): ?>
|
| 34 |
<div id="tabs-pri"><?php print $tabs ?></div>
|
| 35 |
<?php endif; ?>
|
| 36 |
<?php if (isset($tabs2)): ?>
|
| 37 |
<div id="tabs-sec"><?php print $tabs2 ?></div>
|
| 38 |
<?php endif; ?>
|
| 39 |
<div class="content_pad"></div>
|
| 40 |
<div class="content_bg clearfix">
|
| 41 |
<?php if ($sidebar_left != ""): ?>
|
| 42 |
<div class="side_nav">
|
| 43 |
<?php print $sidebar_left ?>
|
| 44 |
</div>
|
| 45 |
<?php endif; ?>
|
| 46 |
<div class="content_global">
|
| 47 |
<?php if ($mission != ""): ?>
|
| 48 |
<div class="mission">
|
| 49 |
<div class="mission-content">
|
| 50 |
<?php print $mission ?>
|
| 51 |
</div>
|
| 52 |
</div>
|
| 53 |
<?php endif; ?>
|
| 54 |
<?php if ($breadcrumb != ""): ?>
|
| 55 |
<div class="bread_crumbs">
|
| 56 |
<?php print $breadcrumb ?>
|
| 57 |
</div>
|
| 58 |
<?php endif; ?>
|
| 59 |
<div class="content_main">
|
| 60 |
<?php if ($help != ""): ?>
|
| 61 |
<div id="help"><?php print $help ?></div>
|
| 62 |
<?php endif; ?>
|
| 63 |
<?php if ($messages != ""): ?>
|
| 64 |
<?php print $messages ?>
|
| 65 |
<?php endif; ?>
|
| 66 |
<?php print $content; ?>
|
| 67 |
<?php // print $feed_icons; ?>
|
| 68 |
</div>
|
| 69 |
</div>
|
| 70 |
</div>
|
| 71 |
</div>
|
| 72 |
<div id="footer">
|
| 73 |
<div id="footer_content">
|
| 74 |
<div class="left"><a href="http://www.bonvga.net/fblike">fblike</a> by <a href="http://www.bonvga.net/">bonvga</a></div>
|
| 75 |
<?php if ($footer_message) : ?>
|
| 76 |
<div class="right"><?php print $footer_message;?></div>
|
| 77 |
<?php endif; ?>
|
| 78 |
</div>
|
| 79 |
</div>
|
| 80 |
<?php print $closure;?>
|
| 81 |
</body>
|
| 82 |
</html>
|