17 lines
417 B
PHP
17 lines
417 B
PHP
<section class="channel">
|
|
<div class="channel-header">
|
|
<?= htmlspecialchars($channel['name']) ?>
|
|
</div>
|
|
|
|
<?php if (!$programmes): ?>
|
|
<div class="programme">
|
|
<div class="programme-desc">Keine Sendungen gefunden.</div>
|
|
</div>
|
|
<?php else: ?>
|
|
<?php foreach ($programmes as $p): ?>
|
|
<?php View::render('programme', ['p' => $p]); ?>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</section>
|
|
|