castopod/app/Views/podcasts/view.php

7 lines
216 B
PHP

<?= $this->extend('layouts/default') ?>
<?= $this->section('content') ?>
<h1 class="text-xl"><?= $podcast->title ?></h1>
<img src="<?= base_url($podcast->image) ?>" alt="Podcast cover" />
<?= $this->endSection() ?>