Guy Martin (Dwev) 4d141fceae feat: add transcript display to episode page
+ fix transcript parser

closes #411
2024-04-17 09:13:07 +00:00

10 lines
335 B
PHP

<article class="flex flex-col items-baseline p-2 sm:flex-row gap-x-2">
<span class="px-1 text-sm font-semibold rounded bg-subtle"><?= $startTime ?></span>
<p>
<?php if ($speaker !== ''): ?>
<span class="mr-1 font-bold"><?= $speaker ?></span>
<?php endif; ?>
<?= $text ?>
</p>
</article>