feat: more work on completing switchover
This commit is contained in:
@@ -3,19 +3,23 @@
|
||||
<span>Live Since 2010</span>
|
||||
</h1>
|
||||
<p data-aos="fade-up" data-aos-delay="100">
|
||||
A community collaboration producing the best podcast album art in the universe!
|
||||
A community collaboration producing the best podcast album art in the universe!<br>
|
||||
Once discussed on <em>The Joe Rogan Experience</em>, sadly,<br>
|
||||
Young Jamie was not asked to pull this up.
|
||||
</p>
|
||||
<div class="group-btn mt-8" data-aos="fade-up" data-aos-delay="200">
|
||||
<a href="explore-filter-sidebar.html" class="btn btn-gradient">
|
||||
<a href="/artworks" class="btn btn-gradient">
|
||||
<span><i class="ri-rocket-line"></i>Explore</span>
|
||||
</a>
|
||||
<a href="create.html" class="btn btn-outline">
|
||||
@if (Auth::user())
|
||||
<a href="/create-artwork" class="btn btn-outline">
|
||||
<span><i class="ri-edit-line"></i> Create</span>
|
||||
</a>
|
||||
@endif
|
||||
</div>
|
||||
<div class="counter-wrapper counter-wrapper-style-two">
|
||||
@foreach ($headerCounters as $headerCounterLabel => $headerCounterCount)
|
||||
@include('home.hero.counter')
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
16
site/resources/views/home/hero/hero.blade.php
Normal file
16
site/resources/views/home/hero/hero.blade.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<section class="hero-banner-style bg-5 bg-image top-section-gap hero-banner-style-4">
|
||||
<div class="hero-banner_inner">
|
||||
<div class="container-fluid">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-xl-7 col-lg-6 col-md-12">
|
||||
@include('home.hero.banner-left')
|
||||
</div>
|
||||
<div class="col-xl-5 col-lg-6 col-md-12">
|
||||
@include('home.hero.slider.slider')
|
||||
</div>
|
||||
{{-- End .col --}}
|
||||
</div>
|
||||
</div>
|
||||
{{-- End .container --}}
|
||||
</div>
|
||||
</section>
|
||||
@@ -28,14 +28,15 @@
|
||||
<span class="bid-owner">Artwork Selected For<br>
|
||||
<strong><a href="#">{{ $recentEpisode->podcast->name }}</a></strong>
|
||||
<br>
|
||||
<a href="#">Episode {{ number_format($recentEpisode->episode_number + 0) }}</a></span>
|
||||
<a href="#">Episode {{ number_format($recentEpisode->episode_number + 0) }}<br>
|
||||
{{ $recentEpisode->episode_date->format('D, M j') }}<sup>{{ $recentEpisode->episode_date->format('S') }}</sup>{{ $recentEpisode->episode_date->format(', Y') }}</a></span>
|
||||
</div>
|
||||
<div class="product-owner py-1 d-flex-between">
|
||||
<span class="bid-owner">Artwork By<br><strong><a
|
||||
href="author-profile.html">{{ $recentEpisode->artwork->artist->name ?? 'Unknown' }}</a></strong></span>
|
||||
<span class="profile-share d-flex-center"><a href="author-profile.html" class="avatar" data-bs-toggle="tooltip" data-bs-placement="top"
|
||||
title="{{ $recentEpisode->artwork->artist->name }}"><img src="{{ Vite::asset('resources/img/default_avatars/default_avatar_users_' . str_pad(rand(1, 32), 2, '0', STR_PAD_LEFT) . '.svg') }}"
|
||||
alt="{{ $recentEpisode->artwork->artist->name }}"></a></span>
|
||||
title="{{ $recentEpisode->artwork->artist->name }}"><img src="{{ Vite::asset($recentEpisode->artwork->artist->avatar ?? 'resources/img/default_avatars/default_avatar_male.svg') }}"
|
||||
alt="{{ $recentEpisode->artwork->artist->name }}"></a></span>
|
||||
</div>
|
||||
<!-- End .product-owner -->
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user