<?php
include_once('configs/config.php');
include_once('_auth.php');
include_once('includes/smarty/Smarty.class.php');
$smarty = new Smarty;
//$smarty->force_compile = true;
$smarty->debugging = false;
$smarty->caching = false;
$smarty->cache_lifetime = 0;
$smarty->assign('token',$token);
$smarty->assign('keyword','');
$smarty->display(tpl_suitname . "/index.tpl");
?>