}
$action->elementStart('div', array('id' => 'header'));
- $action->showLogo();
+ $this->_showLogo($action);
$action->showPrimaryNav();
$action->showSiteNotice();
if (common_logged_in()) {
}
+ function _showLogo($action)
+ {
+ $action->elementStart('address', 'vcard');
+ $action->elementStart('a', array('class' => 'url home bookmark',
+ 'href' => common_local_url('public')));
+ if (common_config('site', 'mobilelogo') ||
+ file_exists(theme_file('logo.png')) ||
+ file_exists(theme_file('mobilelogo.gif'))) {
+
+ $action->element('img', array('class' => 'photo',
+ 'src' => (common_config('site', 'mobilelogo')) ? common_config('site', 'mobilelogo') :
+ ((file_exists(theme_file('mobilelogo.gif'))) ? (theme_path('mobilelogo.gif')): theme_path('logo.png')),
+ 'alt' => common_config('site', 'name')));
+ }
+ $action->element('span', array('class' => 'fn org'), common_config('site', 'name'));
+ $action->elementEnd('a');
+ $action->elementEnd('address');
+ }
+
+
function onStartShowAside($action)
{
if ($this->serveMobile) {