use yii\widgets\LinkPager;
use app\components\MinecraftServerStatus;
$this->title = 'My Yii Application';
$this->registerMetaTag([
'name' => 'description',
'content' => 'ваш текст'
]);
$this->registerMetaTag([
'name' => 'keywords',
'content' => 'ffff'
]);
?>
<script type="text/javascript">
$.ajax({
url: '/index.php',
type: 'post',
success: function(data) {
data = JSON.parse(data);
$('table.table').html(data);
}
});
</script>
<section class="content">
<table class="table">
<tr>
<td class="load">
<img src="/images/831.gif">
</td>
</tr>
</table>
<?php echo LinkPager::widget([
'pagination' => $pages,
]);
?>
</section>
?>