<?php
/**
* #section-header
*/
global $theme;
add_css(get_path('theme', $theme) . '/section-header.css', 'theme');
$title = drupal_get_title();
$tabs = theme('menu_local_tasks');
if (empty($title) && empty($tabs)) {
return;
}
?>
<div id="section-header">
<?php if (!empty($title)) { ?>
<h1><?php print $title ?></h1>
<?php } ?>
<?php if (!empty($tabs)) { ?>
<?php print $tabs ?>
<?php } ?>
</div>