Answer the question
In order to leave comments, you need to log in
How to check if the main page of the site in yii2?
how to check if the main page of the site?
to render one header on the main page, and a 2 header on other pages
Answer the question
In order to leave comments, you need to log in
You can declare a variable in the main page view, for example:
Further in the template:
$this->params['isHome'] = true;
<?php if (isset($this->params['isHome'])): ?>
<header>
...
</header>
<?php else: ?>
<header>
...
</header>
<?php endif ?>
<?php if (!isset($this->params['isHome'])): ?>
<header>
...
</header>
<?php endif ?>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question