| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- /* 此页面模版仅在调试时直接访问时渲染,使用ajax访问时不会渲染此模版
- @var $this yii\web\View
- @var $name string
- @var $message string
- @var $exception Exception
- */
- use yii\helpers\Html;
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <title><?= $name ?></title>
- </head>
- <body>
- <div class="site-error">
- <h1><?= Html::encode($name) ?></h1>
- <div class="alert alert-danger">
- <?= nl2br(Html::encode($message)) ?>
- </div>
- </div>
- </body>
- </html>
|