mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-02 14:29:11 +02:00
fix: restore default podcast icon on public website
This commit is contained in:
parent
086a79c9de
commit
342778bac3
1 changed files with 10 additions and 2 deletions
|
|
@ -15,7 +15,11 @@
|
|||
<?php if ($socialPlatform->is_visible): ?>
|
||||
<?= anchor(
|
||||
esc($socialPlatform->link_url),
|
||||
icon($socialPlatform->type . '/' . esc($socialPlatform->slug)),
|
||||
icon(
|
||||
esc($socialPlatform->slug),
|
||||
'',
|
||||
$socialPlatform->type
|
||||
),
|
||||
[
|
||||
'class' => 'text-2xl text-skin-muted hover:text-skin-base w-8 h-8 items-center inline-flex justify-center',
|
||||
'target' => '_blank',
|
||||
|
|
@ -38,7 +42,11 @@
|
|||
<?php if ($podcastingPlatform->is_visible): ?>
|
||||
<?= anchor(
|
||||
esc($podcastingPlatform->link_url),
|
||||
icon($podcastingPlatform->type . '/' . $podcastingPlatform->slug),
|
||||
icon(
|
||||
$podcastingPlatform->slug,
|
||||
'',
|
||||
$podcastingPlatform->type
|
||||
),
|
||||
[
|
||||
'class' => 'text-2xl text-skin-muted hover:text-skin-base w-8 h-8 items-center inline-flex justify-center',
|
||||
'target' => '_blank',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue