34 lines
1014 B
HTML
34 lines
1014 B
HTML
[viewBag]
|
|
==
|
|
<?php
|
|
function onStart(){
|
|
|
|
$this['mediaPostsFilter'] = Tps\Tps\Models\Media::where('type', 'photo')->orderBy('created_at', 'DESC')->limit(5)->get();
|
|
|
|
}
|
|
?>
|
|
==
|
|
<div class="trending-head media-head">
|
|
<h2><a href="{{'new/group'|page({categoryGroup: 'media', slug:'photo'})}}" style="color:white;">{{ 'new.page.photo.archive'|_ }}</a></h2>
|
|
<span></span>
|
|
</div>
|
|
<div class="trending-content">
|
|
<div class="swiper photoSwiper">
|
|
<div class="swiper-wrapper">
|
|
|
|
{% for post in mediaPostsFilter %}
|
|
<div class="swiper-slide">
|
|
{% partial 'newHome/photo-item' post=post %}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
|
|
</div>
|
|
<div class="photo-prev video-prev">
|
|
<img src="{{'assets/new/icons/arrow-left-white.svg'|theme}}" alt="" />
|
|
</div>
|
|
<div class="photo-next video-next">
|
|
<img src="{{'assets/new/icons/arrow-right-white.svg'|theme}}" alt="" />
|
|
</div>
|
|
</div>
|
|
</div> |