fix: added og headers, lots of cleanup.
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
|
||||
@section('page-title', $podcast->name)
|
||||
|
||||
@section('meta_description', 'Selected artwork for the ' . $podcast->name . ' podcast on the No Agenda Art Generator')
|
||||
|
||||
@section('page-top')
|
||||
<section class="inner-page-banner bg-2 bg-image">
|
||||
<div class="container">
|
||||
@@ -33,7 +35,10 @@
|
||||
<div class="grid-item podcast--{{ $episode->podcast->slug }}">
|
||||
<div class="explore-style-one flex-stretch">
|
||||
<div class="thumb">
|
||||
<a href="/podcast/{{ $episode->podcast->slug }}/episode/{{ $episode->slug }}">
|
||||
<a href="/podcast/{{ $episode->podcast->slug }}/episode/{{ $episode->slug }}"
|
||||
data-bs-toggle="tooltip"
|
||||
data-bs-placement="top"
|
||||
title="View This Episode">
|
||||
<img src="{{ config('app.static_asset_url')
|
||||
. '/thumbnails/'
|
||||
. $episode->artwork->filename ?? '#'}}"
|
||||
@@ -42,7 +47,7 @@
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="header d-flex-between pt-4 pb-1">
|
||||
<h3 class="title">"{{ $episode->title }}"</h3>
|
||||
<h3 class="title"><a href="/podcast/{{ $episode->podcast->slug }}/episode/{{ $episode->slug }}">"{{ $episode->title }}"</a></h3>
|
||||
</div>
|
||||
<div class="product-owner py-0 pb-2 d-flex-between">
|
||||
<h4>{{ $episode->podcast->name }}</h4>
|
||||
|
||||
Reference in New Issue
Block a user