From 0cf17a8c1cceb4a3e5f412a81cee66a926bcc3d8 Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Fri, 20 Sep 2024 22:10:13 +0200 Subject: [PATCH] Fix asset paths --- _pages/showcase/podcast.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_pages/showcase/podcast.blade.php b/_pages/showcase/podcast.blade.php index 0293572a..4b194c78 100644 --- a/_pages/showcase/podcast.blade.php +++ b/_pages/showcase/podcast.blade.php @@ -248,7 +248,7 @@ function initializePlayer() { title: 'The Deep Dive: HydePHP', artist: 'AI-Generated Podcast', cover: '{{ asset('logo.png') }}', - src: "https://git.desilva.se/temp/a101bb58-f54a-4b06-a2fd-4db7d4bafdee/podcast/introduction.wav", + src: "{{ asset('podcast/introduction.wav') }}", }, chapters: [ { title: 'Introduction', startTime: 0, endTime: 60 }, @@ -262,7 +262,7 @@ function initializePlayer() { } // Load and display transcript - fetch("https://git.desilva.se/temp/a101bb58-f54a-4b06-a2fd-4db7d4bafdee/podcast/introduction.srt") + fetch("{{ asset('podcast/introduction.srt') }}") .then(response => response.text()) .then(srt => { const lines = parseSRT(srt);