Need all joomla pages <jdoc:include type="head" />
in header except home page , what is the solution ?
Thanks
Joomla 1.6, 1.7 and 2.5
<?php
$app = JFactory::getApplication();
$menu = $app->getMenu();
if ($menu->getActive() != $menu->getDefault()):
?>
<jdoc:include type="head" />
<?php endif; ?>