mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
919 B
PHTML
26 lines
919 B
PHTML
<section class='PostModernPosts'>
|
|
<div class="{{gfx()['container']}}">
|
|
<h1>
|
|
{{getSetting($data->area_name.'_'.$data->part.'_title')}}
|
|
</h1>
|
|
|
|
<div class="row">
|
|
|
|
@foreach( getGroupPostsBySetting($data->area_name.'_'.$data->part.'_group',4) as $post )
|
|
<div class="col-lg-3 col-md-6">
|
|
<a href="{{$post->webUrl()}}">
|
|
<div class="post-modern-post" style="background-image: url('{{$post->imgUrl()}}')">
|
|
<img src="{{asset('upload/images/'.$data->area_name.'.'.$data->part.'.svg')}}"
|
|
class="img-fluid" alt="">
|
|
</div>
|
|
<h4>
|
|
{{$post->title}}
|
|
</h4>
|
|
</a>
|
|
</div>
|
|
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</section>
|