iframe.php
1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
use backend\widgets\LangSwitch\LangSwitch;
use backend\themes\defaults\assets\AppAsset;
/**
* @author FilamentV <vortex.filament@gmail.com>
* @copyright (c), Thread
*/
$bundle = AppAsset::register($this);
$this->beginPage()
?>
<!DOCTYPE html>
<html lang="<?= Yii::$app->language ?>">
<head>
<base href="<?= Yii::$app->getUrlManager()->getBaseUrl() ?>">
<meta charset="<?= Yii::$app->charset ?>"/>
<link rel="shortcut icon" type="image/png" href="shortfavicon.png"/>
<link rel="icon" type="image/png" href="favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php $this->head(); ?>
</head>
<body class="html">
<?php $this->beginBody() ?>
<div id="wrapper">
<div id="page-wrapper" class="white-bg" style="margin-left: 0; padding: 0 0 0 0;">
<div class="row border-bottom" style="height: 0; overflow: hidden;">
<nav class="navbar navbar-static-top gray-bg" role="navigation" style="margin-bottom: 0">
<?= LangSwitch::widget() ?>
</nav>
</div>
<?= $content ?>
</div>
</div>
<style>
.ibox-content {
padding: 0 0 0 0;
}
</style>
<?php $this->endBody() ?>
</body>
</html>
<?php $this->endPage() ?>