示例#1
0
文件: admin.php 项目: ivphpan/iris
<?php

/* @var $this \yii\web\View */
/* @var $content string */
use yii\helpers\Html;
use yii\bootstrap\Nav;
use yii\bootstrap\NavBar;
use yii\widgets\Breadcrumbs;
use app\assets\AdminAsset;
AdminAsset::register($this);
$this->beginPage();
?>
<!DOCTYPE html>
<html lang="<?php 
echo Yii::$app->language;
?>
">
<head>
    <meta charset="<?php 
echo Yii::$app->charset;
?>
">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?php 
echo Html::csrfMetaTags();
?>
    <title><?php 
echo Html::encode($this->title);
?>
</title>
    <?php 
示例#2
0
<?php

use yii\helpers\Html;
use yii\widgets\Breadcrumbs;
use app\assets\AppAsset;
use app\widgets;
/**
 * @var \yii\web\View $this
 * @var string $content
 */
\app\assets\AdminAsset::register($this);
$this->beginPage();
?>
	<!DOCTYPE html>
	<html lang="<?php 
echo Yii::$app->language;
?>
">
	<head>
		<meta charset="UTF-8">
		<title><?php 
echo Html::encode($this->title);
?>
</title>
		<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
		<?php 
echo Html::csrfMetaTags();
?>
		<?php 
$this->head();
?>