mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-17 16:01:15 +08:00
16 lines
291 B
PHP
16 lines
291 B
PHP
<?php
|
|
/** @var \yii\web\View $this */
|
|
/** @var string $static */
|
|
$this->beginPage();
|
|
$this->head();
|
|
$this->beginBody();
|
|
?>
|
|
{
|
|
"static": "<?= $static ?>",
|
|
"dynamic": "<?= $this->renderDynamic('return Yii::$app->params[\'dynamic\'];') ?>"
|
|
}
|
|
<?php
|
|
$this->endBody();
|
|
$this->endPage();
|
|
?>
|