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.
22 lines
803 B
PHTML
22 lines
803 B
PHTML
<section class='NoLinkImage @if(getSetting($data->area->name.'_'.$data->part.'_dark')) dark-mode @endif'>
|
|
<div class="{{gfx()['container']}}">
|
|
<div class="row">
|
|
|
|
@foreach( getGroupPostsBySetting($data->area->name.'_'.$data->part.'_group',5) as $post )
|
|
<div class="col-lg-3 col-md-6">
|
|
<div class=" no-link-item mb-4">
|
|
|
|
<img src="{{$post->orgUrl()}}" class="float-start me-2" alt=" {{$post->title}}">
|
|
<h3>
|
|
{{$post->title}}
|
|
</h3>
|
|
<p>
|
|
{{$post->subtitle}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</section>
|