2025-11-27 21:31:47 +01:00
|
|
|
<?php if (!empty($pageContent)): ?>
|
2026-02-10 22:25:44 +01:00
|
|
|
<article class="list-intro">
|
2025-11-27 21:31:47 +01:00
|
|
|
<?= $pageContent ?>
|
2026-02-10 22:25:44 +01:00
|
|
|
</article>
|
2025-11-27 21:31:47 +01:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
2026-02-10 22:25:44 +01:00
|
|
|
<section>
|
|
|
|
|
<ul class="compact-list">
|
|
|
|
|
<?php foreach ($items as $item): ?>
|
|
|
|
|
<li>
|
|
|
|
|
<a href="<?= htmlspecialchars($item['url']) ?>">
|
|
|
|
|
<strong><?= htmlspecialchars($item['title']) ?></strong>
|
|
|
|
|
<?php if (($metadata['show_date'] ?? true) && !empty($item['date'])): ?>
|
|
|
|
|
<time><?= htmlspecialchars($item['date']) ?></time>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
</a>
|
|
|
|
|
<?php if (!empty($item['summary'])): ?>
|
|
|
|
|
<p><?= htmlspecialchars($item['summary']) ?></p>
|
2025-11-27 21:31:47 +01:00
|
|
|
<?php endif; ?>
|
2026-02-10 22:25:44 +01:00
|
|
|
</li>
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
</ul>
|
|
|
|
|
</section>
|