20 lines
487 B
PHP
20 lines
487 B
PHP
<div class="programme">
|
||
<div class="programme-time">
|
||
<?= $p['start']->format('H:i') ?> – <?= $p['stop']->format('H:i') ?>
|
||
</div>
|
||
|
||
<div class="programme-title">
|
||
<?= htmlspecialchars($p['title']) ?>
|
||
</div>
|
||
|
||
<?php if ($p['desc']): ?>
|
||
<div class="programme-desc">
|
||
<?= htmlspecialchars($p['desc']) ?>
|
||
</div>
|
||
<?php endif; ?>
|
||
|
||
<?php if ($p['category']): ?>
|
||
<span class="category"><?= htmlspecialchars($p['category']) ?></span>
|
||
<?php endif; ?>
|
||
</div>
|