2024-02-17 12:02:38 +00:00
|
|
|
<article class="flex p-2 gap-x-2">
|
|
|
|
<img src="<?= $chapterImgUrl ?>" class="w-20 h-20 rounded-lg aspect-square" loading="lazy" />
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<div class="flex items-baseline gap-x-2">
|
|
|
|
<span class="px-1 text-sm font-semibold rounded bg-subtle"><?= $startTime ?></span><?= $title ?>
|
|
|
|
</div>
|
|
|
|
<?php if ($chapterUrl !== ''): ?>
|
2024-04-26 17:57:25 +00:00
|
|
|
<a class="inline-flex items-baseline mt-1 text-sm underline text-skin-muted hover:no-underline" href='<?= $chapterUrl ?>' target='_blank' rel="noopener noreferrer"><?= $chapterUrl ?><?= icon('external-link-fill', [
|
|
|
|
'class' => 'sm:ml-1 sm:text-base sm:opacity-60',
|
|
|
|
]) ?></a>
|
2024-02-17 12:02:38 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
</article>
|