Initial import
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
use app\models\parsed\Page;
|
||||
|
||||
/**
|
||||
* @var $title
|
||||
* @var string $bottom_care
|
||||
*/
|
||||
?>
|
||||
<div class="content">
|
||||
<div class="page-header">
|
||||
<a href="<?= Yii::$app->goHome() ?>" class="header-logo top-care">
|
||||
<img src="/_public/images/logo.png">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
use app\models\parsed\Page;
|
||||
|
||||
/**
|
||||
* @var Page $model
|
||||
* @var string $bottom_care
|
||||
*/
|
||||
?>
|
||||
<style>
|
||||
header {
|
||||
border-bottom: 0;
|
||||
}
|
||||
</style>
|
||||
<div class="content">
|
||||
<div class="page-header">
|
||||
<a href="<?= Yii::$app->goHome() ?>" class="top-care">
|
||||
<?php if (Yii::$app->language == 'en'): ?>
|
||||
<img src="/_public/images/logo_en/N-logo-02.png">
|
||||
<?php else: ?>
|
||||
<img src="/_public/images/logo-b.png" style="margin-top: 15px">
|
||||
<?php endif; ?>
|
||||
</a>
|
||||
<?php if ($model && $model->headerImage('21:5')): ?>
|
||||
<img class="header-img" src="<?= $model->headerImage('21:5') ?>" ">
|
||||
<?php endif; ?>
|
||||
<?php if($bottom_care): ?>
|
||||
<div class="bottom-care text-uppercase"><?= $bottom_care ?></div>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user