mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
16 lines
382 B
PHP
16 lines
382 B
PHP
<?= $this->extend('episode/_layout-preview') ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<div class="flex flex-col gap-y-4">
|
|
<?php foreach ($episode->posts as $key => $post): ?>
|
|
<?= view('post/_partials/card', [
|
|
'index' => $key,
|
|
'post' => $post,
|
|
'podcast' => $podcast,
|
|
]) ?>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
|
|
<?= $this->endSection() ?>
|