File: /home/safarimaris/home/safarimaris/frontend/controllers/StaticController.php
<?php
namespace frontend\controllers;
use Yii;
use common\models\Review;
use yii\helpers\Url;
class StaticController extends Controller
{
public function actionAbout()
{
$this->view->params['bg'] = '<div class="pbg-bot"></div>';
$this->view->params['bodyClass'] = 'boat-page';
return $this->render('about');
}
public function actionPartners()
{
$this->view->params['bg'] = '<div class="pbg-bot"></div>';
$this->view->params['bodyClass'] = 'boat-page';
return $this->render('partners');
}
}