mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-23 10:32:01 +00:00
fix: restore default podcast icon on public website
This commit is contained in:
parent
086a79c9de
commit
342778bac3
@ -15,7 +15,11 @@
|
|||||||
<?php if ($socialPlatform->is_visible): ?>
|
<?php if ($socialPlatform->is_visible): ?>
|
||||||
<?= anchor(
|
<?= anchor(
|
||||||
esc($socialPlatform->link_url),
|
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',
|
'class' => 'text-2xl text-skin-muted hover:text-skin-base w-8 h-8 items-center inline-flex justify-center',
|
||||||
'target' => '_blank',
|
'target' => '_blank',
|
||||||
@ -38,7 +42,11 @@
|
|||||||
<?php if ($podcastingPlatform->is_visible): ?>
|
<?php if ($podcastingPlatform->is_visible): ?>
|
||||||
<?= anchor(
|
<?= anchor(
|
||||||
esc($podcastingPlatform->link_url),
|
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',
|
'class' => 'text-2xl text-skin-muted hover:text-skin-base w-8 h-8 items-center inline-flex justify-center',
|
||||||
'target' => '_blank',
|
'target' => '_blank',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user