Skip to content

Commit

Permalink
Fix https errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChinchilla committed Apr 5, 2024
1 parent e2ec537 commit 5f697da
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/content/podcasts/dragos-nedelcu-of-the-senior-dev.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
player_embed: '14fc68c9-8a10-484d-b984-1b69d1577281'
descript_embed: 'https://share.descript.com/view/dxKFLGtGWb3'
descript_embed: 'dxKFLGtGWb3'
---
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
player_embed: '0b658af6-5f6d-44a4-a9b1-e8e38be9c377'
descript_embed: 'https://share.descript.com/view/NeD9xPRCVS1'
descript_embed: 'NeD9xPRCVS1'
---
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
player_embed: '2f9bc30d-e118-47ef-b420-ef532e56b775'
descript_embed: 'https://share.descript.com/view/8X1OvpUkki5'
descript_embed: '8X1OvpUkki5'
---
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
player_embed: '6c3e952a-bb05-4897-b129-921af73b583d'
descript_embed: 'https://share.descript.com/view/wDkPB7j4X0O'
descript_embed: 'wDkPB7j4X0O'
---
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
player_embed: '97813423-767f-44fd-80ce-2e764e24c79f'
descript_embed: 'https://share.descript.com/view/0F7KcJa2vbX'
descript_embed: '0F7KcJa2vbX'
---
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
player_embed: 'd2ee3445-8ec5-4052-a8f6-efd25fd8556b'
descript_embed: 'https://share.descript.com/view/iwbTyGGrWgv'
descript_embed: 'iwbTyGGrWgv'
---
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
descript_embed: 'https://share.descript.com/view/4OxnyeR5481'
descript_embed: '4OxnyeR5481'
player_embed: 'afc4cbf2-d13c-486b-89a4-393fdadce026'
---
5 changes: 3 additions & 2 deletions src/layouts/PodcastLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,12 @@ function slugify(str) {
</audio>

}
<!-- TODO: When did the interactive transcript stop working? -->
<h2 class="text-xl sm:text-2xl leading-tight mb-2 font-heading dark:text-slate-300">
Interactive transcript
</h2>
{episodeData ? <iframe src={episodeData.descript_embed} width="100%" height="520" allowfullscreen /> : ''}
{episodeData.descript_embed ?
<iframe width="100%" height="520" allowfullscreen seamless src=`https://share.descript.com/view/${episodeData.descript_embed}`></iframe> : ''}
</div>
<h2>Transcript</h2>
<div set:html={episodeData.transcript}></div>
Expand Down

0 comments on commit 5f697da

Please sign in to comment.