2021-09-02 16:34:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2020-07-27 09:35:34 +00:00
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= $podcast->title ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= $podcast->title ?>
|
2021-04-02 17:20:02 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->section('headerRight') ?>
|
2021-09-21 15:51:04 +00:00
|
|
|
<Button uri="<?= route_to('podcast-edit', $podcast->id) ?>" variant="secondary" iconLeft="edit"><?= lang('Podcast.edit') ?></Button>
|
|
|
|
<Button uri="<?= route_to('episode-create', $podcast->id) ?>" variant="primary" iconLeft="add"><?= lang('Episode.create') ?></Button>
|
2020-07-27 09:35:34 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2021-08-23 11:05:16 +00:00
|
|
|
<?= view_cell('Modules\Admin\Controllers\PodcastController::latestEpisodes', [
|
2020-10-02 15:38:16 +00:00
|
|
|
'limit' => 5,
|
2021-09-02 16:34:25 +00:00
|
|
|
'podcastId' => $podcast->id,
|
2020-10-02 15:38:16 +00:00
|
|
|
]) ?>
|
|
|
|
|
2020-07-27 09:35:34 +00:00
|
|
|
<?= $this->endSection() ?>
|