feat/factory_creation (#1)
Prepping for launch. Reviewed-on: #1 Co-authored-by: Paul Couture <paul@paulcouture.com> Co-committed-by: Paul Couture <paul@paulcouture.com>
This commit was merged in pull request #1.
This commit is contained in:
23
site/resources/views/home/recents/section.blade.php
Normal file
23
site/resources/views/home/recents/section.blade.php
Normal file
@@ -0,0 +1,23 @@
|
||||
{{-- Start Live Auction --}}
|
||||
<section class="ptb-120 live-auction">
|
||||
<div class="container">
|
||||
<div class="section-title">
|
||||
<span class="subtitle">Artworks</span>
|
||||
<h2>Recent Artwork Submissons</h2>
|
||||
</div>
|
||||
{{-- End .section-title --}}
|
||||
<div class="slider slick-activation-001 slick-gutter-15 slick-pagination-50">
|
||||
@foreach ($recentSubmissions as $recent)
|
||||
@php
|
||||
$thisArtwork = $recent;
|
||||
$thisPodcast = $recent->podcast;
|
||||
$thisEpisode = $recent->episode;
|
||||
@endphp
|
||||
@include('artworks.card')
|
||||
@endforeach
|
||||
{{-- End .slick-activation-01 --}}
|
||||
</div>
|
||||
{{-- End .container --}}
|
||||
</div>
|
||||
</section>
|
||||
{{-- End Live Auction --}}
|
||||
Reference in New Issue
Block a user