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.
xshop/resources/views/segments/clips_page/ClipListGrid/ClipListGrid.blade.php

27 lines
813 B
PHTML

<section class='ClipListGrid content'>
<div class="{{gfx()['container']}}">
<h1>
{{$title}}
</h1>
<div class="row">
@foreach($clips as $clip)
<div class="col-lg-4">
<div class="clip-grid-item">
<a href="{{$clip->webUrl()}}">
<img src="{{$clip->imgUrl()}}" alt="">
<h2>
<span>
{{$clip->title}}
</span>
<i class="ri-play-circle-line"></i>
</h2>
</a>
</div>
</div>
@endforeach
</div>
</div>
</section>