<?php defined('_JEXEC') or die('Restricted access'); ?>
<?php
jimport('joomla.html.pane');
$pane = &JPane::getInstance('sliders', array('allowAllClose' => true));
?>
<div class="col width-50">
<h3><?= "Welcome to Anahita Social Engine ⢠1.0 Alpha 1" ?></h3>
<div>Please do not use this version for a live production site.</div>
</div>
<div class="col width-50">
<?= $pane->startPane("content-pane"); ?>
<?php foreach(@$modules as $module) : ?>
<?= $pane->startPanel( $module->title, 'cpanel-panel-'.$module->name ) ?>
<?= JModuleHelper::renderModule($module) ?>
<?= $pane->endPanel(); ?>
<?php endforeach; ?>
<?= $pane->endPane(); ?>
</div>
<div class="clr"></div>