Add configuration system

This commit is contained in:
Gogs
2026-07-06 17:17:31 +02:00
parent fe8342772d
commit 566ddacb2f
13 changed files with 318 additions and 176 deletions
+19
View File
@@ -0,0 +1,19 @@
<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>