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.
37 lines
1.1 KiB
PHTML
37 lines
1.1 KiB
PHTML
<section class='PostsSlider live-setting' data-live="{{$data->area_name.'_'.$data->part}}">
|
|
<div class="{{gfx()['container']}}">
|
|
<h1>
|
|
{{getSetting($data->area_name.'_'.$data->part.'_title')}}
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
<div id="posts-slider-container">
|
|
|
|
<div id="posts-slider">
|
|
|
|
|
|
@foreach( getPostsQueryBySetting($data->area_name.'_'.$data->part.'_query',10) as $post )
|
|
<div class="item slider-content">
|
|
<div class="post-slider">
|
|
|
|
<a href="{{$post->webUrl()}}">
|
|
<img src="{{$post->orgUrl()}}" alt=" {{$post->title}}" loading="lazy">
|
|
<h3>
|
|
{{$post->title}}
|
|
</h3>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
|
|
</div>
|
|
<div id="pst-nxt" class="sld-btn">
|
|
<i class="ri-arrow-right-line"></i>
|
|
</div>
|
|
<div id="pst-prv" class="sld-btn">
|
|
<i class="ri-arrow-left-line"></i>
|
|
</div>
|
|
</section>
|