* @copyright Curverider Ltd 2008-2010 * @link http://elgg.com/ * */ //get frontpage right code $contents = elgg_get_entities(array('type' => 'object', 'subtype' => 'front', 'limit' => 1)); if($contents){ foreach($contents as $c){ echo $c->title; // title is the left hand content } }else{ echo "

" . elgg_echo("expages:addcontent") . "

"; } ?>