Ejemplo n.º 1
0
<?php

use yii\helpers\Html;
use yii\bootstrap\Nav;
use yii\bootstrap\NavBar;
use yii\widgets\Breadcrumbs;
use frontend\assets\AppFrontend;
use frontend\widgets\Alert;
use yii\web\View;
use frontend\models\Meta;
AppFrontend::register($this);
$controller = Yii::$app->controller->id;
$action = Yii::$app->controller->action->id;
$url = $controller . '/' . $action;
$meta = Meta::getPageMeta($url);
$this->beginPage();
?>
<!DOCTYPE html>
<html lang="<?php 
echo Yii::$app->language;
?>
">
<head>
    <meta charset="<?php 
echo Yii::$app->charset;
?>
">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title><?php 
echo $meta ? Html::encode($meta->title) : 'VinnieGuitar';