where([
'in_top_menu' => true,
])
->orderBy([
'sort_order' => SORT_ASC,
])
->all();
$main_menu = Page::find()
->where([
'in_menu' => true,
])
->orderBy([
'sort_order' => SORT_ASC,
])
->all();
$this->registerMetaTag([
'name' => 'robots',
'content' => 'noindex,nofollow',
]);
AppAsset::register($this);
$brands = Category::find()
->where([
'parent_id' => 0,
])
->all();
?>
beginPage(); ?>
= Html::csrfMetaTags(); ?>
Seo::TITLE,
]); ?>
Seo::DESCRIPTION,
]);
echo Seo::widget([
'row' => Seo::META,
]);
?>
head(); ?>
beginBody(); ?>
'div',
'options' => [
'class' => 'nav_up',
],
'itemTemplate' => '{link} - ',
'activeItemTemplate' => '{link}',
'links' => isset( $this->params[ 'breadcrumbs' ] ) ? $this->params[ 'breadcrumbs' ] : [],
]);
?>
= $content ?>
endBody(); ?>
endPage(); ?>