<?php
define('DIR', dirname(__FILE__));
include_once(DIR.'/core/Base.php');
class Index extends Base
{
protected function _before() {
parent::_before();
}
protected function act_index() {
Cur::$set['js'] = $this->view('index/js/js_index_index.js');
Cur::$set['title'] = 'Главня';
if($this->user != null) Request::redirect('/feed');
$this->setVarsMainTempl(array(
'content' => $this->view('index/v_index_index.php')
));
}
} Loader::init(__FILE__);