You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
<?php |
|
|
|
use common\modules\pages\entities\Page; |
|
use yii\helpers\Html; |
|
|
|
/* @var $this yii\web\View */ |
|
/* @var $page Page */ |
|
|
|
$this->title = $page->getSeoTitle(); |
|
|
|
$this->registerMetaTag(['name' => 'description', 'content' => $page->translation->meta_description]); |
|
$this->registerMetaTag(['name' => 'keywords', 'content' => $page->translation->meta_keywords]); |
|
|
|
foreach ($page->parents as $parent) { |
|
if (!$parent->isRoot()) { |
|
$this->params['breadcrumbs'][] = ['label' => $parent->title, 'url' => ['view', 'id' => $parent->id]]; |
|
} |
|
} |
|
$this->params['breadcrumbs'][] = $page->translation->title; |
|
?> |
|
<article class="page-view"> |
|
|
|
<h1><?= Html::encode($page->translation->title) ?></h1> |
|
|
|
<?= $page->content(Yii::$app->formatter->asHtml($page->translation->content, [ |
|
'Attr.AllowedRel' => ['nofollow'], |
|
'HTML.SafeObject' => true, |
|
'Output.FlashCompat' => true, |
|
'HTML.SafeIframe' => true, |
|
'URI.SafeIframeRegexp' => '%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/)%', |
|
])) ?> |
|
|
|
</article>
|
|
|