15 lines
450 B
PHP
15 lines
450 B
PHP
![]() |
<div class="doc-list">
|
||
|
<?php foreach ($items as $item): ?>
|
||
|
<article>
|
||
|
<h1>
|
||
|
<a href="<?= htmlspecialchars($item['url']) ?>">
|
||
|
<?= htmlspecialchars($item['title']) ?>
|
||
|
</a>
|
||
|
</h1>
|
||
|
<?php if ($item['summary']): ?>
|
||
|
<p><?= htmlspecialchars($item['summary']) ?></p>
|
||
|
<?php endif; ?>
|
||
|
</article>
|
||
|
<?php endforeach; ?>
|
||
|
</div>
|