fix: initial changes to allow for intial deployment (#4)
Reviewed-on: #4 Co-authored-by: Paul Couture <paul@paulcouture.com> Co-committed-by: Paul Couture <paul@paulcouture.com>
This commit was merged in pull request #4.
This commit is contained in:
@@ -28,27 +28,7 @@
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xxl-3 col-xl-4 col-lg-4 mb-6">
|
||||
<div class="single-author profile">
|
||||
<div class="thumb">
|
||||
<img src="{{ Vite::asset($artist->header ?? 'resources/img/artist-dark-banner-default.png') }}" alt="{{ $artist->name }}'s Cover Photo" />
|
||||
</div>
|
||||
<div class="content">
|
||||
<img class="author-thumb" src="{{ Vite::asset($artist->avatar ?? 'resources/img/default_avatars/default_avatar_male.svg') }}"
|
||||
alt="{{ $artist->name }}" />
|
||||
<h4 class="title">{{ $artist->name }}</h4>
|
||||
<p class="title">{{ $artist->location ?? 'No Agenda Nation' }}</p>
|
||||
<p class="title">Artist For {{ $artist->artworks->sortBy('created_at')->first()->created_at->diffForHumans(now(), Carbon\CarbonInterface::DIFF_ABSOLUTE) }}</p>
|
||||
@if ($artist->bio)
|
||||
<h4>Bio:</h4>
|
||||
<p>{{ nl2br($artist->bio) }}</p>
|
||||
@endif
|
||||
<div class="social size-small justify-content-center mb-4">
|
||||
@if ($artist->website)
|
||||
<a href="{{ $artist->website }}" title="website"><i class="ri-pages-line"></i></a>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@include('profile.partials.single-artist-card')
|
||||
</div>
|
||||
{{-- end bio sidebar --}}
|
||||
<div class="col-xxl-9 col-xl-8 col-lg-8">
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
alt="{{ $artist->name }}" /></a>
|
||||
<h4 class="title"><a href="/artists/{{ $artist->slug }}">{{ $artist->name }}</a></h4>
|
||||
<p class="title">{{ $artist->location ?? 'No Agenda Nation' }}</p>
|
||||
<p class="title">Artist for {{ $artist->created_at->diffForHumans() }}</p>
|
||||
<p class="title">Artist For {{ $artist->artworks->sortBy('created_at')->first()->created_at->diffForHumans(now(), Carbon\CarbonInterface::DIFF_ABSOLUTE) }}</p>
|
||||
@if ($artist->bio)
|
||||
<h4>Bio:</h4>
|
||||
<p>{{ nl2br($artist->bio) }}</p>
|
||||
|
||||
Reference in New Issue
Block a user