fix: initial changes to allow for intial deployment
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">
|
||||
|
||||
Reference in New Issue
Block a user