%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/ppaobm/vendor/yiisoft/yii2-gii/src/views/layouts/ |
Upload File : |
<?php
use yii\widgets\Menu;
use yii\helpers\Html;
/* @var $this \yii\web\View */
/* @var $content string */
$asset = yii\gii\GiiAsset::register($this);
?>
<?php $this->beginPage() ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="none">
<?php $this->registerCsrfMetaTags() ?>
<title><?= Html::encode($this->title) ?></title>
<?php $this->head() ?>
</head>
<body>
<div class="page-container">
<?php $this->beginBody() ?>
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
<div class="container">
<?php echo Html::a(Html::img($asset->baseUrl . '/logo.png'), ['default/index'], [
'class' => ['navbar-brand']
]); ?>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#gii-nav"
aria-controls="gii-nav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="gii-nav">
<?php
echo Menu::widget([
'options' => ['class' => ['navbar-nav', 'ml-auto']],
'activateItems' => true,
'itemOptions' => [
'class' => ['nav-item']
],
'linkTemplate' => '<a class="nav-link" href="{url}">{label}</a>',
'items' => [
['label' => 'Home', 'url' => ['default/index']],
['label' => 'Help', 'url' => 'http://www.yiiframework.com/doc-2.0/ext-gii-index.html'],
['label' => 'Application', 'url' => Yii::$app->homeUrl],
]
]);
?>
</div>
</div>
</nav>
<div class="container content-container">
<?= $content ?>
</div>
<div class="footer-fix"></div>
</div>
<footer class="footer border-top">
<div class="container">
<div class="row">
<div class="col-6">
<p>A Product of <a href="http://www.yiisoft.com/">Yii Software LLC</a></p>
</div>
<div class="col-6">
<p class="text-right"><?= Yii::powered() ?></p>
</div>
</div>
</div>
</footer>
<?php $this->endBody() ?>
</body>
</html>
<?php $this->endPage() ?>