public function actionIndex()
{
//$posts = Post::find()->all();
$query = Post::find();
$pages = new Pagination(['totalCount' => $query->count()]);
$posts = $query->offset($pages->offset)
->limit($pages->limit)
->all();
return $this->render('index', compact('posts', 'pages'));
}