@extends('front.app',['attributes'=>'class=homepage']) @section('meta') @stop @section('container')
@if($headBlock)
{{$headBlock->h1}}

{{$headBlock->h1}}

{{$headBlock->shortDescription}}

@endif @if($newProducts->isNotEmpty())

{{ShowLabelById(12)}}

@if($newProducts->count() > 1)
@endif
@foreach($newProducts as $product) @foreach($product->gender_category as $gender)
@include('front.templates.goods-template',['imageSize'=>'M','gender'=>$gender])
@endforeach @endforeach
@endif @if($banners->isNotEmpty())
@foreach($banners as $banner)
{{$banner->name}}

{{$banner->name}}

{!! $banner->body !!}
@endforeach
@endif @if($brands->isNotEmpty())

{{ShowLabelById(14)}}

@if($brands->count() > 1)
@endif
@foreach($brands as $brand)
@include('front.templates.brand.brand-card')
@endforeach
@endif @if($mainBanner)
{{$mainBanner->name}}

{{$mainBanner->h1}}

{{$mainBanner->shortDescription}}

{!! $mainBanner->body !!}
@endif @if($newsSection && $posts->isNotEmpty())

{{$newsSection->name}}

@if($posts->count() > 1)
@endif
@foreach($posts as $post)
@include('front.templates.post-card')
@endforeach
@endif
@stop