castopod/themes/cp_app/episode/preview-comments.php

14 lines
357 B
PHP

<?= $this->extend('episode/_layout-preview') ?>
<?= $this->section('content') ?>
<div class="flex flex-col gap-y-2">
<?php foreach ($episode->comments as $comment): ?>
<?= view('episode/_partials/comment', [
'comment' => $comment,
'podcast' => $podcast,
]) ?>
<?php endforeach; ?>
</div>
<?= $this->endSection() ?>