diff --git a/site/resources/views/episodes/episode.blade.php b/site/resources/views/episodes/episode.blade.php index d68e377..5d104a9 100644 --- a/site/resources/views/episodes/episode.blade.php +++ b/site/resources/views/episodes/episode.blade.php @@ -2,7 +2,9 @@ @section('page-title', $pageTitle) +@if (!in_null($episode->artwork)) @section('meta_og_img', config('app.static_asset_url') . '/thumbnails/' . $episode->artwork->filename) +@endif @section('meta_description', 'Artwork for the ' . $episode->podcast->name . ' podcast, episode ' . $episode->episode_number + 0 . ' by ' . $episode->artwork->artist->name) diff --git a/site/resources/views/home/support/page.blade.php b/site/resources/views/home/support/page.blade.php index 41fe8b6..2ddb534 100644 --- a/site/resources/views/home/support/page.blade.php +++ b/site/resources/views/home/support/page.blade.php @@ -107,6 +107,7 @@ functionality, it took a few days to stabilize the cacheing and hardware, but yo
{{ $artist->location ?? 'No Agenda Nation' }}
+ @if ($artist->artworks->count())Artist For {{ $artist->artworks->sortBy('created_at')->first()->created_at->diffForHumans(now(), Carbon\CarbonInterface::DIFF_ABSOLUTE) }}
+ @endif @if ($artist->bio){{ nl2br($artist->bio) }}