Well forgive me for asking such a newb question (if it is?) but can any one tell me how to have different section of the
home page of my new module ? I mean different (Boxes?) ..
For example in the "Groups" module's homepage, there is a "Featured Group" section/box and on left side there is "New Groups"
section/box .. So If I am writing a new module, how can I create that ?
I have following in MeBlggModule.php file .. but it creates only single box when pageCode is called .. :S .
function actionHome () {
$this->_oTemplate->pageStart();
$aVars = array (
'server_time' => date('r'),
);
echo $this->_oTemplate->parseHtmlByName('main', $aVars);
$this->_oTemplate->pageCode(_t('_me_blgg'), true);
}