You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
577 B
23 lines
577 B
<?php
|
|
|
|
/* @var $this \yii\web\View */
|
|
/* @var $content string */
|
|
|
|
use yii\helpers\Html;
|
|
?>
|
|
<?php $this->beginPage() ?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=<?= Yii::$app->charset ?>"/>
|
|
<title><?= Html::encode($this->title) ?></title>
|
|
<?=Html::csrfMetaTags() ?>
|
|
<link href="/css/base.css?r=20170606" rel="stylesheet" type="text/css">
|
|
<?php $this->head() ?>
|
|
</head>
|
|
<body>
|
|
<?php $this->beginBody() ?>
|
|
<?= $content ?>
|
|
<?php $this->endBody() ?>
|
|
</body>
|
|
</html>
|
|
<?php $this->endPage() ?>
|
|
|