mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-19 16:26:58 +01:00
32 lines
691 B
PHP
32 lines
691 B
PHP
<?php
|
|
|
|
/* @var $this \yii\web\View */
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\Breadcrumbs;
|
|
|
|
?>
|
|
|
|
<main>
|
|
<div class="container">
|
|
<section class="content-header">
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<?= Breadcrumbs::widget([
|
|
'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
|
|
]) ?>
|
|
</section>
|
|
|
|
<section class="content">
|
|
<?= $content ?>
|
|
</section>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="main-footer">
|
|
<span class="product-font">
|
|
<span>Solomaha</span> Home by <a href="https://solomaha.com" target="_blank">Alex Solomaha</a>
|
|
</span>
|
|
</footer>
|
|
|